Skip to content
Snippets Groups Projects
Select Git revision
  • 2af596ae6f7bb7ff9ec03bc605962ac737519038
  • main default protected
  • renovate/django-5.x
  • koma/feature/preference-polling-form
4 results

admin.py

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    urls.py 500 B
    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/', 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'),
            ])
        ),
    ]