{% extends 'easycms/base.html' %} {% block easycms_title %}Comments{% endblock easycms_title %} {% block easycms_content %}
Content Editor Home

{% if show_deleted %} Hide Deleted {% else %} Show Deleted {% endif %} {% if show_pending %} Hide Pending {% else %} Show Pending {% endif %} {% if show_approved %} Hide Approved {% else %} Show Approved {% endif %}

{% for comment in pager.items %} {% if comment.author %} {% else %} {% endif %} {% endfor %}
{% if comment.deleted %} Deleted {% elif comment.approved %} Approved {% else %} Pending {% endif %} {{ comment.author.name }}{{ comment.author_name }} <{{ comment.author_email }}>{{ comment.timestamp | format_datetime_long }}
{% if comment.author_user_agent %} {{ comment.author_user_agent }} {% else %} (none) {% endif %}
On {{ comment.post.title }}
{{ comment.content | safe }}
{% if comment.deleted %} {% else %} {% if comment.approved %} {% else %} {% endif %} Edit {% endif %}
{{ macros.pager(pager) }} {% endblock easycms_content %}