{% load i18n comments %} {% get_comment_form for object as form %}

{% csrf_token %}{{ form.security_hash }}{{ form.timestamp }}{{ form.content_type }}{{ form.object_pk }}
{% if object.note.all %}

{% trans "Notes" %}

{% for note in object.note.all %}

{{ note.submit_date }} {% if user.name %} ({{ note.user.name }}) {% else %} ({{ note.user.username }}) {% endif %} #

{{ note.comment|linebreaks }} {% endfor %}
{% endif %}