mirror of
https://github.com/thecyberlearn/digital-branding-system.git
synced 2026-08-18 07:52:55 +00:00
- 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
8 lines
215 B
Python
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'),
|
|
]
|