11 lines
390 B
Python
11 lines
390 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 .js_views import *
|
|
|
|
urlpatterns = [
|
|
path('get_content_for_section', get_content_for_section_ajax, name='main'),
|
|
# path('page/<str:url>/', StaticPageView, name='static_page'),
|
|
# path('test_code', test_code, name='test_code'),
|
|
] |