feat: created first ticket class

This commit is contained in:
2025-05-03 00:46:47 +02:00
parent 3fe2151588
commit b8b9443d8a
6 changed files with 57 additions and 9 deletions

10
ticketsystem/urls.py Normal file
View File

@@ -0,0 +1,10 @@
from django.urls import path
from . import views
urlpatterns = [
# /ticketsystem/
path("", views.index, name="index"),
# /ticketsystem/detail/
path("<int:ticket_id>/", views.detail, name="detail"),
]