{% if post_form is defined %}
{{ form(post_form) }}
{% endif %}
{% if notes is defined %}
{% for note in notes %}
{{ note.getActorNickname() }}
{% endfor %}
{% else %}
{{ 'No notes here.' | trans }}
{% endif %}
{{ note.getContent() }}
{% set id = note.getId() - 1 %}
{% for attachment in attachments[id] %}
{{ attachment.getTitle() }}
{% endfor %}