{% extends "admin/layout.html" %} {% set active_menu_item = ['comments', 'overview'] %} {% block title %}{% trans "Manage Comments" %}{% endblock %} {% block contents %} {% if post %}

{% trans post_title=post.title|e %}Comments for Post "{{ post_title }}"{% endtrans %}

{% trans "show all comments" %}, edit post or show post.

{% else %}

{% trans "Manage Comments" %}

{% endif %} {% if not post %}{% endif %} {%- for comment in comments %} {% if not post %}{% endif %} {%- else %} {%- endfor %}
{% trans "ID" %} {% trans "Author" %} {% trans "Date" %}{% trans "Post" %}
{{ comment.comment_id }} {{ comment.author|e }} <{{ comment.email|e }}> {{ comment.pub_date|datetimeformat|e }}{{ comment.post.title|e }}
{% trans "No comments." %}
{% endblock %}