14 lines
504 B
Python
14 lines
504 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_form/', support_create_ticket_form_ajax, name='support_create_ticket_form_ajax'),
|
|
path('create_ticket/', create_ticket_ajax, name='create_ticket_ajax'),
|
|
# path('create_/', registration_ajax, name='registration_ajax'),
|
|
|
|
] |