{% extends 'base.html' %} {% block title %}Scheduled Posts{% endblock %} {% block page_title %}Scheduled Posts{% endblock %} {% block content %}
All active and paused post schedules
| Post Content | Page | Type | Next Run | Last Run | Failures | Status | Actions |
|---|---|---|---|---|---|---|---|
|
{{ 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 %} |