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

{{ conference }} Conference

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

{{ comment.author }}

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

{{ comment.text }}

{% endfor %} {% if previous >= 0 %} Previous {% endif %} {% if next < comments|length %} Next {% endif %} {% else %}
No comments have been posted yet for this conference.
{% endif %} {% endblock %}