Notes:
{% for note in question.notes.all %}
-
{{ note.created_on }} by
{% if note.user_author %}
{{note.user_author}}
{% else %}
{{ note.author }} [unregistered]
{% endif %}
{{note.note_type}} / {{ note.note }}
{% if not note.complete %}
(Mark complete)
{% endif %}
{% if request.user.is_superuser %}
(Delete)
{% endif %}
{% endfor %}
{% if not question.notes.all %}No notes to display.{% endif %}