{% extends '_layout.jinja2' %} {% block header %}

Administration

{% endblock header %} {% block main %}

{{ label }}

{% for state, timestamps in posts.items() %} {% set state_label = 'En attente' if state == 'waiting' else 'Publiés' %}

{{ state_label }}

{% if timestamps %} {% for timestamp, post in timestamps.items() %} {% endfor %}
Titre Date Actions
{{ post.title }} {{ post.published | parse_iso_datetime('%x') }} Éditer
{% else %}

Aucun article.

{% endif %} {% endfor %}
{% endblock main %}