{% load humanize %}

Notes

{% csrf_token %} {% include "dojo/form_fields.html" with form=form %}
{% for note in notes %}
{% if user.username == note.author.username or user.is_superuser %}
{% csrf_token %}
{% csrf_token %}
{% endif %}
{% csrf_token %}
{{ note.author.username }} commented {{ note.date }}
{% if note.edited %}
{{ note.editor.username }} edited {{ note.edit_time }}
{% endif %} {% if note.private %}
(will not appear in report)
{% endif %}
{{ note }}
{% endfor %}