routes/route_search_results/
This commit is contained in:
SDE
2023-08-04 14:16:36 +03:00
parent c8484f1451
commit 5ff0b100c5
3 changed files with 32 additions and 1 deletions

10
RoutesApp/urls.py Normal file
View File

@@ -0,0 +1,10 @@
# coding=utf-8
from django.urls import path
from .views import *
from django.contrib.auth import views
urlpatterns = [
path('route_search_results/', route_search_results_View, name='route_search_results_View'),
]