Files
Aerbim/ServicesApp/urls.py
2023-12-09 16:19:35 +03:00

12 lines
462 B
Python

from django.contrib import admin
from django.urls import path, include
from django.conf.urls.static import static
from django.conf import settings
from .views import *
urlpatterns = [
path('section/<str:url>/', section_view, name='section_page'),
# path('project_request/', page_project_request_View, name='page_project_request'),
# path('page/<str:url>/', StaticPageView, name='static_page'),
# path('test_code', test_code, name='test_code'),
]