{% extends 'admin/index.html' %} {% from 'bootstrap/pagination.html' import render_pagination %} {% block title %}Manage Comments{% endblock %} {% block content %} {% if comments %} {% for comment in comments %} {% endfor %}
Body Author Image Reported Date Actions
{{ comment.body }} {{ comment.author.name }} Photo {{ comment.photo.id }} {{ comment.flag }} {{ moment(comment.timestamp).format('LL') }}
{% else %}
No comments.
{% endif %} {% endblock %}