{% for reply in replies %}
  • {{ reply.guest.name }} {% if reply.status == 'Y' or reply.status == 'M' %} {% if reply.extra_guests %} + {{ reply.extra_guests }} {% endif %} {% endif %} {% if reply.comment %}
    {{ reply.comment }}
    {% endif %} {% if reply.has_viewed == True and request.user.is_staff %}
    last viewed at {{ reply.modified }}
    {% endif %}
  • {% endfor %}