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

0003_ak.py

Blame
  • 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'),
    ]