12 lines
447 B
Python
12 lines
447 B
Python
from django.urls import path
|
|
|
|
from .views import home, ticket_create, ticket_detail, ticket_list, ticket_success
|
|
|
|
urlpatterns = [
|
|
path("", home, name="home"),
|
|
path("tickets/", ticket_list, name="ticket_list"),
|
|
path("tickets/new/", ticket_create, name="ticket_create"),
|
|
path("tickets/<uuid:public_id>/", ticket_detail, name="ticket_detail"),
|
|
path("tickets/<uuid:public_id>/submitted/", ticket_success, name="ticket_success"),
|
|
]
|