Select Git revision
serializers.py
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
urls.py 329 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'),
])
),
]