{% extends 'base.html' %} {% block title %}Scheduled Posts{% endblock %} {% block page_title %}Scheduled Posts{% endblock %} {% block content %} {% if schedules %}
{% for s in schedules %} {% endfor %}
Post Content Page Type Next Run Last Run Failures Status Actions
{{ s.post.title or s.post.content[:50] }}…
{{ s.post.status }}
{{ s.page.page_name }} {{ s.schedule_type }} {{ s.next_run_at.strftime('%b %d, %H:%M') if s.next_run_at else '—' }} {{ s.last_run_at.strftime('%b %d, %H:%M') if s.last_run_at else 'Never' }} {% if s.failure_count > 0 %} {{ s.failure_count }}/{{ s.max_failures }} {% else %} 0 {% endif %} {% if s.is_active %} Active {% else %} Paused {% endif %}
{% else %}

No scheduled posts

Create a post and schedule it to appear here.

Create Post
{% endif %} {% endblock %}