{% extends 'base.html.twig' %} {% block title %}Conference Guestbook - {{ conference }}{% endblock %} {% block body %}

{{ conference }} Conference

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

{{ comment.author }}

{{ comment.createdAt|format_datetime('medium', 'short') }}

{{ comment.text }}

{% endfor %} {% else %}
No comments have been posted yet for this conference.
{% endif %} {% endblock %}