13 lines
403 B
Python
13 lines
403 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'),
|
|
] |