mirror of
https://github.com/pretix/pretix.git
synced 2026-05-05 15:14:04 +00:00
9 lines
200 B
Python
9 lines
200 B
Python
from django.conf.urls import url
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
url(r'^control/event/(?P<organizer>[^/]+)/(?P<event>[^/]+)/statistics/', views.IndexView.as_view(),
|
|
name='index'),
|
|
]
|