{% extends 'admin/index.html' %} {% from 'bootstrap5/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 }} {{ comment.created_at }}
{% else %}
No comments.
{% endif %} {% endblock %}