digital-branding-system/dashboard/urls.py
thecyberlearn c10d4692e6 Initial commit: Django Digital Branding Management System
- Core Django project structure with branding_system and dashboard apps
- Platform, ContentDeliverable, and Strategy models with relationships
- Comprehensive Django admin interface with custom displays
- Dashboard views with completion tracking and overdue detection
- Tailwind CSS styling with custom color scheme
- WARP.md documentation for development guidance
2025-09-07 10:16:37 +05:30

8 lines
215 B
Python

from django.urls import path
from . import views
urlpatterns = [
path('', views.dashboard_view, name='dashboard'),
path('platform/<int:platform_id>/', views.platform_detail_view, name='platform-detail'),
]