You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
687 B
15 lines
687 B
6 months ago
|
from django.urls import path
|
||
|
from SS01 import views
|
||
|
|
||
|
urlpatterns = [
|
||
|
path('login/', views.login,name='login'),
|
||
|
path('register/', views.register,name='register'),
|
||
|
path('logOut/', views.logOut, name='logOut'),
|
||
|
path('index/', views.index, name='index'),
|
||
|
path('changeSelfInfo/', views.changeSelfInfo, name='changeSelfInfo'),
|
||
|
path('changePassword/', views.changePassword, name='changePassword'),
|
||
|
path('saleTicket/', views.saleTicket, name='saleTicket'),
|
||
|
path('saleTicketInfo/', views.saleTicketInfo, name='saleTicketInfo'),
|
||
|
path('saleTicketInfo/delete/', views.saleTicketInfo_delete),
|
||
|
path('saleTicketInfo/ticketFox/', views.ticketFox),
|
||
|
]
|