14 lines
466 B
Python
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'),
|
|
] |