{% extends "base_template.html" %} {% block title %}{{ _('Comments') }}{% endblock %} {% block content %}
{{ _('Moderate comments submitted by visitors.') }}
| {{ _('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.') }} | ||||