13 lines
419 B
Python
13 lines
419 B
Python
# coding=utf-8
|
|
from django.urls import path
|
|
# from AuthApp.js_views import *
|
|
# from AuthApp.import_funcs import *
|
|
from .js_views import *
|
|
from django.contrib.auth import views
|
|
from RoutesApp.js_views import new_route_view_ajax
|
|
|
|
urlpatterns = [
|
|
path('support_create_ticket_ajax/', support_create_ticket_ajax, name='support_create_ticket_ajax'),
|
|
# path('create_/', registration_ajax, name='registration_ajax'),
|
|
|
|
] |