{% extends "admin/layout.html" %} {% block admin_body %}

Moderate Comments

From here you can delete and edit comments. If you want to be informed about new comments you can use the feed provided.

{% if ask_confirmation %}

Confirm

{% trans amount=to_delete|length %} Do you really want to delete one comment? {% pluralize %} Do you really want to delete {{ amount }} comments? {% endtrans %}
{% endif %} {% if edit_detail %}

Edit Comment

Name
E-Mail
Comment Title
{% endif %} {%- macro render_row(comment, include_page=false) %} {{ comment.title|e }} by {{ comment.author|e }}{% if include_page %} on {{ comment.associated_page }} {{ comment.pub_date|datetimeformat }} edit {%- endmacro %} {% if pages_with_comments %} {%- for comment in recent_comments %} {{- render_row(comment, true) }} {%- endfor %} {%- for page in pages_with_comments %} {%- if page.has_details %} {%- for comment in page.comments %} {{- render_row(comment) }} {%- endfor %} {%- endif %} {% endfor %} {%- else %} {%- endif %}
Recent Comments (feed)
{{ page.title|e }} (view | feed)
no comments submitted so far
{% endblock %}