Skip to content
Snippets Groups Projects
Select Git revision
  • 9d7e032f749a6a535ed8fa9db56652c5a154a466
  • master default protected
  • 1-issue-czi-wtf
  • update-deps
4 results

empty

Blame
  • Forked from FS Info TU Dortmund / Infoscreen / Infoscreen
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    urls.py 574 B
    from csp.decorators import csp_replace
    from django.urls import path, include
    
    from . import views
    
    app_name = "plan"
    
    urlpatterns = [
        path(
            '<slug:event_slug>/plan/',
            include([
                path('', views.PlanIndexView.as_view(), name='plan_overview'),
                path('wall/', csp_replace(FRAME_ANCESTORS="*")(views.PlanScreenView.as_view()), name='plan_wall'),
                path('room/<int:pk>/', views.PlanRoomView.as_view(), name='plan_room'),
                path('track/<int:pk>/', views.PlanTrackView.as_view(), name='plan_track'),
            ])
        ),
    ]