8

Allows switching between list and dashboard view

This commit is contained in:
Jasper Berghoef
2017-05-31 12:31:30 +02:00
committed by Michael van Tellingen
parent 45f2de62ea
commit 7034c09d4a
35 changed files with 67 additions and 209 deletions

View File

@@ -10,5 +10,7 @@ urlpatterns = [
url(r'^segment/(?P<segment_id>[0-9]+)/toggle/$',
views.toggle, name='toggle'),
url(r'^(?P<page_id>[0-9]+)/copy/(?P<segment_id>[0-9]+)$',
views.copy_page_view, name='copy_page')
views.copy_page_view, name='copy_page'),
url(r'^segment/toggle_segment_view/$',
views.toggle_segment_view, name='toggle_segment_view'),
]