Skip to content
Snippets Groups Projects
Select Git revision
  • 0fb46af423ad2a834c6b736b7b6cd6f06f29498e
  • main default protected
  • docker
  • feature-tracker
  • fix-api
  • feature-event-wizard
  • feature-akslides
  • fix-history-interest
  • feature-constraint-checking-wip
  • feature-constraint-checking
10 results

views.py

Blame
  • Forked from KIF / AKPlanning
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    urls.py 252 B
    from django.urls import path
    
    from AKDashboard import views
    
    app_name = "dashboard"
    
    urlpatterns = [
        path('', views.DashboardView.as_view(), name="dashboard"),
        path('<slug:slug>/', views.DashboardEventView.as_view(), name='dashboard_event'),
    ]