{% if comments_pending %}
{% for comment in comments_pending %}
{{ comment.author }} {% if comment.addr %} {{ comment.addr }} {% endif %} {{ comment.post_time | date(format="%F %R", locale=time_lang) }} {% if comment.editable %} {{ tr(l=l,k="admin-comment-edit")|safe }} {% endif %} {% if admin and comment.needs_approval %} {{ tr(l=l,k="admin-comment-approve")|safe }} {% endif %} {% if admin %} {{ tr(l=l,k="admin-comment-remove")|safe }} {% endif %}

{{ comment.text }}

{% endfor %}
{% endif %}
{% for comment in comments %}
{{ comment.author }} {{ comment.post_time | date(format="%F %R", locale=time_lang) }} {% if comment.editable %} {{ tr(l=l,k="admin-comment-edit")|safe }} {% endif %} {% if admin and comment.needs_approval %} {{ tr(l=l,k="admin-comment-approve")|safe }} {% endif %} {% if admin %} {{ tr(l=l,k="admin-comment-remove")|safe }} {% endif %}

{{ comment.text }}

{% endfor %}
{% if new_comment_errors %}

{{ tr(l=l,k="error-list")|safe }}

{% endif %}



{% if edit_comment %}
{% if edit_comment_errors %}

{{ tr(l=l,k="error-list")|safe }}

{% endif %}



{% endif %}