Files
account_store/RoutesApp/js_urls.py
SDE fb31feac39 0.4.3
routes filter
2023-08-25 14:36:03 +03:00

16 lines
559 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('change_route/<int:route_id>/', create_or_change_route_ajax, name='change_route_ajax'),
path('create_or_change_route/', create_or_change_route_ajax, name='create_or_change_route_ajax'),
path('edit_route/', edit_route_ajax, name='edit_route_ajax'),
path('get_routes/', get_routes_ajax, name='get_routes_ajax'),
path('find_routes/', find_routes_ajax, name='find_routes_ajax'),
]