{% extends 'base.html.twig' %} {% block title %}Conference Guestbook - {{ conference }}{% endblock %} {% block body %} {% for message in app.flashes('notification') %}
{{ message }}
{% endfor %}

{{ conference }} Conference

{% if comments|length > 0 %} {% for comment in comments %}
{% if comment.photofilename %} {% endif %}

{{ comment.author }}

{{ comment.createdAt|format_datetime('medium', 'short') }}
{{ comment.text|nl2br }}
{% endfor %}
{{ 'nb_of_comments'|trans({count: comments|length}) }}
{% if previous >= 0 %} Previous {% endif %} {% if next < comments|length %} Next {% endif %} {% else %}
No comments have been posted yet for this conference.
{% endif %}

Add your own feedback

{{ form(comment_form) }}
{% endblock %}