36215-vm/core/urls.py
Flatlogic Bot 6f83ca7c8f v1
2025-11-24 17:15:30 +00:00

7 lines
175 B
Python

from django.urls import path
from . import views
urlpatterns = [
path('', views.index, name='index'),
path('success/', views.ticket_success, name='ticket_success'),
]