edit_route fixed
This commit is contained in:
SDE
2023-08-01 19:56:09 +03:00
parent 586428b857
commit 0b35e91159
6 changed files with 33 additions and 12 deletions

View File

@@ -5,8 +5,9 @@ from django.urls import path
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('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'),