{% extends "base.html" %} {% block title %}{{ t('posts.title') }} - {{ t('app.title') }}{% endblock %} {% block content %}
| {{ 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 %} |
{{ t('posts.empty') }}
{% endif %} {% endblock %}