2018-05-23 21:28:27 +00:00
|
|
|
from django.urls import path
|
2017-10-03 19:14:07 +00:00
|
|
|
from .views import *
|
|
|
|
|
2018-04-03 16:44:10 +00:00
|
|
|
|
|
|
|
app_name = 'backoffice'
|
|
|
|
|
2017-10-03 19:14:07 +00:00
|
|
|
urlpatterns = [
|
2018-05-23 21:28:27 +00:00
|
|
|
path('', BackofficeIndexView.as_view(), name='index'),
|
|
|
|
path('product_handout/', ProductHandoutView.as_view(), name='product_handout'),
|
|
|
|
path('badge_handout/', BadgeHandoutView.as_view(), name='badge_handout'),
|
|
|
|
path('ticket_checkin/', TicketCheckinView.as_view(), name='ticket_checkin'),
|
|
|
|
path('public_credit_names/', ApproveNamesView.as_view(), name='public_credit_names'),
|
2017-10-03 19:14:07 +00:00
|
|
|
]
|
|
|
|
|