add route to edit_route
This commit is contained in:
SDE
2023-08-01 19:36:53 +03:00
parent b7e01aa6bc
commit d4c123a775
2 changed files with 11 additions and 2 deletions

View File

@@ -6,6 +6,7 @@ from .js_views import *
urlpatterns = [
path('create_or_change_route/', create_or_change_route_ajax, name='create_or_change_route_ajax'),
path('create_or_change_route/<int:route_id>/', create_or_change_route_ajax, name='change_route_ajax'),
path('edit_route/', edit_route_ajax, name='edit_route_ajax'),
path('get_routes/', get_routes_ajax, name='get_routes_ajax'),