forked from CGM_Public/pretix_original
9 lines
204 B
Python
9 lines
204 B
Python
from django.conf.urls import url
|
|
|
|
from .views import IndexView
|
|
|
|
urlpatterns = [
|
|
url(r'^control/event/(?P<organizer>[^/]+)/(?P<event>[^/]+)/webcheckin/$',
|
|
IndexView.as_view(), name='index'),
|
|
]
|