Files
tripwithbonus/AuthApp/js_urls.py
SDE 9eb73e74ff 0.0.17
login routines
2023-07-11 15:59:09 +03:00

14 lines
466 B
Python

# coding=utf-8
from django.urls import path
# from AuthApp.js_views import *
# from AuthApp.import_funcs import *
from AuthApp.js_views import *
from django.contrib.auth import views
urlpatterns = [
path('registration/', registration_ajax, name='registration_ajax'),
path('login/', login_ajax, name='login_ajax'),
path('new_route_view/', new_route_view_ajax, name='new_route_view_ajax'),
path('my_routes/', my_routes_ajax, name='my_routes_ajax'),
]