{% for comment in comments %}
{% include "snippets/avatar.html" with image_attribute=request.user.avatar class="mr-3 rounded-circle" style="width:30px; height:30px" %}
{{comment.created_by}}
{{comment.datetime_created}}
{% if request.user == comment.created_by %}
Edit
{% endif %}

{{comment.content}}

{% csrf_token %}
{% endfor %}