{% for comment in comments_pending %}
{{ comment.author }} {{ comment.post_time | date(format="%F %R", locale=config.lang) }} {% if admin and comment.needs_approval %} Approve {% endif %} {% if admin %} Remove {% endif %}

{{ comment.text }}

{% endfor %}
{% for comment in comments %}
{{ comment.author }} {{ comment.post_time | date(format="%F %R", locale=config.lang) }} {% if admin and comment.needs_approval %} Approve {% endif %} {% if admin %} Remove {% endif %}

{{ comment.text }}

{% endfor %}