{% extends 'easycms/base.html' %} {% block easycms_title %}Comments{% endblock easycms_title %} {% block easycms_content %}
{% 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 %}
{% if comment.deleted %} Deleted {% elif comment.approved %} Approved {% else %} Pending {% endif %} | {% if comment.author %}{{ comment.author.name }} | {% else %}{{ comment.author_name }} <{{ comment.author_email }}> | {% endif %}{{ comment.timestamp | format_datetime_long }} |
{% if comment.author_user_agent %} {{ comment.author_user_agent }} {% else %} (none) {% endif %} | |||
{{ comment.content | safe }}
|
|||