{% extends "base.html" %} {% block title %}{{ t('posts.title') }} - {{ t('app.title') }}{% endblock %} {% block content %}

{{ t('posts.title') }}

{% if posts %} {% for post in posts %} {% endfor %}
{{ t('posts.date') }} {{ t('posts.state') }} {{ t('posts.pillar') }} {{ t('posts.label') }} {{ t('posts.chars') }} {{ t('posts.measured') }}
{{ post.date }} {{ t('posts.state_' + (post.state or 'draft')) }} P{{ post.pillar }} {{ post.label }} {{ post.chars }} {% if post.measured %}{{ post.measured }}{% else %}{{ t('posts.not_measured') }}{% endif %}
{% else %}

{{ t('posts.empty') }}

{% endif %} {% endblock %}