Files
account_store/AuthApp/js_urls.py
SDE 914f3f958c 0.0.8
ajax registration def
2023-06-21 17:08:40 +03:00

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'),
]