{% extends "orga/cfp/base.html" %} {% load i18n %} {% load rich_text %} {% block content %}

{% trans "Attendee feedback" %}

{% regroup feedback|dictsort:"talk.title" by talk.title as feedbacks_list %} {% for submission in feedbacks_list %}

{% trans "Feedback for" %} {{ quotation_open }}{{ submission.grouper }}{{ quotation_close }}

{% for entry in submission.list %}
{{ entry.review|rich_text }}
{% endfor %}

{% empty %} {% trans "There has been no feedback for talks in this event yet." %} {% endfor %} {% include "orga/pagination.html" %} {% endblock %}