{% extends "base_template.html" %} {% block title %}{{ _('Posts') }}{% endblock %} {% block content %}
{{ _('Manage blog posts and their status.') }}
| {{ _('Title') }} | {{ _('Date') }} | {{ _('Status') }} | {{ _('Actions') }} |
|---|---|---|---|
|
{{ p.title }}
{{ p.slug }}
|
{{ p.date.strftime('%Y-%m-%d') }} | {% if p.status == 'published' %} {{ _('Published') }} {% else %} {{ _('Draft') }} {% endif %} | {{ _('Edit') }} |
| {{ _('No posts yet.') }} | |||