{% extends 'base.html' %} {% load bornhack %} {% block content %}
BackOffice - Approve Event Feedback
The Content team can approve or reject pending EventFeedback from this page. The feedback will not be visible to the Event owner before it is approved. The Event owner will not be able to see the username of the feedback authors. The feedback author can see when the feedback has been approved or rejected by returning to the feedback page.
{% if eventfeedback_list %}
{{ formset.management_form }} {% csrf_token %} {% for form, feedback in formset|zip:eventfeedback_list %} {% include "includes/eventfeedback_detail_panel.html" with eventfeedback=feedback event=feedback.event %} {% endfor %} Cancel
{% else %}
There is no feedback awaiting approval.
Cancel {% endif %}
{% endblock content %}