7 lines
175 B
Python
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'),
|
|
] |