Files
tripwithbonus/RoutesApp/js_urls.py
SDE dce31b11b7 0.1.5
edit route url
2023-07-31 19:16:09 +03:00

12 lines
361 B
Python

# 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'),
path('edit_route/', edit_route_ajax, name='edit_route_ajax'),
path('get_routes/', get_routes_ajax, name='get_routes_ajax'),
]