{% extends "base_template.html" %} {% block title %}{{ _('Comments') }}{% endblock %} {% block content %}
{# Flash messages #} {% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for category, message in messages %}
{{ message }}
{% endfor %}
{% endif %} {% endwith %} {% for c in comments %} {% else %} {% endfor %}
{{ _('Author') }} {{ _('Comment') }} {{ _('Date') }} {{ _('Status') }} {{ _('Actions') }}
{{ c.author_name }} {% if c.author_email %}
{{ c.author_email }} {% endif %}
{{ c.content|truncate(100, true) }} {{ c.created_at.strftime('%Y-%m-%d %H:%M') }} {% if c.approved %} {{ _('approved') }} {% else %} {{ _('pending') }} {% endif %} {% if not c.approved %}
{% endif %}
{{ _('No comments yet.') }}
{% endblock %}