{% if comments_pending %}
{% 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 %}
{% endif %}
{% 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 %}
Your name:
Your e-mail:
Your comment:
Post comment
{{ comment.text }}