XH_Digital_Management/application/opa_mgnt/urls.py

10 lines
493 B
Python

from django.urls import path
from .views import *
urlpatterns = [
path('social_media_account_registration/', social_media_account_registration, name='social_media_account_registration'),
path('account_operation_management/', account_operation_management, name='account_operation_management'),
path('website_registration/', website_registration, name='website_registration'),
path('website_maintenance_record/', website_maintenance_record, name='website_maintenance_record')
]