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
7 lines
150 B
Python
7 lines
150 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class DashboardConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'dashboard'
|