38475-vm/core/urls.py
2026-02-16 13:17:54 +00:00

8 lines
257 B
Python

from django.urls import path
from . import views
urlpatterns = [
path("", views.dashboard, name="dashboard"),
path("ticket/new/", views.ticket_create, name="ticket_create"),
path("ticket/<int:pk>/", views.ticket_detail, name="ticket_detail"),
]