{% extends "base_template.html" %} {% block title %}{{ _('Posts') }}{% endblock %} {% block content %}
{{ _('Manage blog posts and their status.') }}
| {{ _('Title') }} | {{ _('Status') }} | {{ _('Actions') }} | ||
|---|---|---|---|---|
|
{{ p.title }}
{{ p.slug }}
|
{# data-post-state carries the machine-readable state so
tests and scripts stay independent of the translated
label. Scheduled and published both show their date. #}
{% if p.status != 'published' %}
{{ _('Draft') }} | {% elif p.is_scheduled %}
{{ _('Scheduled') }}
{{ p.published_at.strftime('%Y-%m-%d %H:%M') }}
|
{% else %}
{{ _('Published') }}
{{ p.date.strftime('%Y-%m-%d %H:%M') }}
|
{% endif %}
{{ _('Edit') }} |
| {{ _('No posts yet.') }} | ||||