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