{% extends "base.html" %} {% block title %}Dashboard - Digital Branding Management{% endblock %} {% block content %}

Content Strategy Dashboard

Monitor your content progress across all platforms

Active Platforms

{{ total_platforms }}

Committed

{{ committed_count }}

Drafted

{{ drafted_count }}

Published

{{ published_count }}

Completion Rate

{{ overall_completion_rate }}%

Content Status Overview

{% if total_deliverables > 0 %}
{% endif %}
Committed ({{ committed_count }}) Drafted ({{ drafted_count }}) Published ({{ published_count }})

Platform Progress

{% if platforms %}
{% for platform in platforms %}

{{ platform.name }}

{{ platform.get_platform_type_display }}

{{ platform.primary_content_type }}

Content Progress {{ platform.completion_percentage }}%
{{ platform.committed_content }}
Committed
{{ platform.drafted_content }}
Drafted
{{ platform.published_content }}
Published
Total: {{ platform.total_content }} {{ platform.total_strategies }} strategies
View Details
{% endfor %}
{% else %}

No platforms yet

Get started by adding your first platform

Add Platform
{% endif %}

Recent Activity

{% for deliverable in recent_deliverables|slice:":5" %}

{{ deliverable.title }}

{{ deliverable.platform.name }} • {{ deliverable.get_content_type_display }}

{{ deliverable.get_status_display }}
{% empty %}
No recent activity
{% endfor %}

Alerts & Overdue

{% for deliverable in overdue_deliverables|slice:":5" %}

{{ deliverable.title }}

{{ deliverable.platform.name }}

Due: {{ deliverable.target_date }}

{% empty %}

All caught up! No overdue items

{% endfor %}
{% endblock %} {% block extra_js %} {% endblock %}