10 lines
273 B
Python
10 lines
273 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'),
|
|
] |