{% if item.comment.moderated_by_id %}
Last moderated by user #{{ item.comment.moderated_by_id }}
on {{ item.comment.moderated_at.strftime('%Y-%m-%d %H:%M') if item.comment.moderated_at else 'N/A' }}
{% endif %}
{% endfor %}
{# Pagination #}
{% if pagination.pages > 1 %}
{% if pagination.has_prev %}
Previous
{% endif %}
Page {{ pagination.page }} of {{ pagination.pages }}
{% if pagination.has_next %}
Next
{% endif %}
Content:
{{ item.comment.content_type }}/{{ item.comment.content_id }}Status: {% if item.comment.status == 'p' %}Posted {% elif item.comment.status == 'm' %}Pending {% elif item.comment.status == 'b' %}Blocked {% elif item.comment.status == 'r' %}Revoked {% else %}Unknown {% endif %} (Reason: {{ item.comment.status_reason }})