{% extends 'base.html' %} {% block title %}Dashboard{% endblock %} {% block page_title %}Dashboard{% endblock %} {% block topbar_actions %} New Post {% endblock %} {% block content %}
{{ total_published }}
Published
{{ total_scheduled }}
Scheduled
{{ total_failed }}
Failed
{{ total_draft }}
Drafts
โฑ Upcoming Posts
View All
{% if upcoming %}
{% for s in upcoming %}
{{ s.next_run_at.strftime('%H:%M') if s.next_run_at else '--' }}
{{ s.next_run_at.strftime('%b %d') if s.next_run_at else '' }}
{{ s.post.content[:60] }}{% if s.post.content|length > 60 %}โ€ฆ{% endif %}
{{ s.page.page_name }} ยท {{ s.schedule_type }}
{{ s.schedule_type }}
{% endfor %}
{% else %}

No upcoming posts

Create and schedule a post to get started.

Create Post
{% endif %}
๐Ÿ“Š Page Activity
Manage
{% if page_activity %} {% set max_count = page_activity[0].count if page_activity[0].count > 0 else 1 %} {% for item in page_activity %}
{{ item.page.page_name }} {{ item.count }} published
{% endfor %} {% else %}

No pages connected

Connect Facebook to sync your pages.

{% endif %}
๐Ÿ“‹ Recent Activity
View All Logs
{% if recent_logs %}
{% for log in recent_logs %} {% endfor %}
Status Page Response Time
{{ log.status }} {{ log.page.page_name if log.page else 'โ€”' }} {{ log.response_message[:80] if log.response_message else 'โ€”' }} {{ log.executed_at.strftime('%b %d, %H:%M') }}
{% else %}

No activity yet

Published post logs will appear here.

{% endif %}
{% endblock %}