{% extends "admin/layout.html" %} {% set active_menu_item = ['comments', 'overview'] %} {% block title %}{% trans "Manage Comments" %}{% endblock %} {% block contents %} {% if post %}
{% trans "show all comments" %}, edit post or show post.
{% else %}{% trans "ID" %} | {% trans "Author" %} | {% trans "Date" %} | {% if not post %}{% trans "Post" %} | {% endif %}
---|---|---|---|
{{ comment.comment_id }} | {{ comment.author|e }} <{{ comment.email|e }}> | {{ comment.pub_date|datetimeformat|e }} | {% if not post %}{{ comment.post.title|e }} | {% endif %}
{% trans "No comments." %} |