This commit is contained in:
Kara Engelhardt
2026-07-28 11:30:49 +02:00
parent cefaae87db
commit 1ffdd3bd87
7 changed files with 179 additions and 79 deletions
+4 -3
View File
@@ -22,7 +22,8 @@
from django.urls import re_path
from .views import (
EditorView,
LayoutEditorView,
LayoutCreateView,
LayoutListView
)
@@ -30,7 +31,7 @@ urlpatterns = [
re_path(r'^control/event/(?P<organizer>[^/]+)/(?P<event>[^/]+)/wallet/$',
LayoutListView.as_view(), name='index'),
re_path(r'^control/event/(?P<organizer>[^/]+)/(?P<event>[^/]+)/wallet/edit/(?P<platform>[^/]+)/$',
EditorView.as_view(), name='edit'),
LayoutCreateView.as_view(), name='add'),
re_path(r'^control/event/(?P<organizer>[^/]+)/(?P<event>[^/]+)/wallet/edit/(?P<platform>[^/]+)/(?P<layout>[^/]+)/$',
EditorView.as_view(), name='edit'),
LayoutEditorView.as_view(), name='edit'),
]