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//", ticket_detail, name="ticket_detail"), path("tickets//submitted/", ticket_success, name="ticket_success"), ]