route сreate
This commit is contained in:
SDE
2023-07-13 15:37:31 +03:00
parent 6de8a4bdd7
commit 86a43d69e2
6 changed files with 88 additions and 13 deletions

9
RoutesApp/js_urls.py Normal file
View File

@@ -0,0 +1,9 @@
# coding=utf-8
from django.urls import path
# from AuthApp.js_views import *
# from AuthApp.import_funcs import *
from .js_views import *
urlpatterns = [
path('create_route/', create_route_ajax, name='create_route_ajax'),
]