Free and open source ticket system written in python
1from django.urls import path
2
3from .views import show_ticket, show_tickets, create_ticket, dashboard, show_tickets_history, download_attachment
4
5urlpatterns = [
6 path("tickets/<int:ticket_id>", show_ticket, name="ticket_detail"),
7 path("tickets/new", create_ticket, name="create_ticket"),
8 path("tickets", show_tickets, name="all_tickets"),
9 path("tickets/history", show_tickets_history, name="tickets_history"),
10 path("dashboard", dashboard, name="dashboard"),
11 path("tickets/attachments/<int:attachment_id>/", download_attachment, name="download_attachment"),
12]