bornhack-website/src/program/templates/event_feedback_list.html
Thomas Flummer 1c88ed8073
Added title blocks to templates that did not have one (#511)
In most cases this mirrors the primary header on the page, but in some cases the title is simplified and/or nested to reflect the depth of the current page

Co-authored-by: Thomas Steen Rasmussen <tykling@bornhack.org>
2020-06-03 21:30:10 +02:00

16 lines
518 B
HTML

{% extends 'program_base.html' %}
{% load program %}
{% block title %}
Feedback List | {{ block.super }}
{% endblock %}
{% block program_content %}
<h2>Feedback List</h2>
<p class="lead">This is a list of all the approved feedback for your {{ camp.title }} event <b>{{ event.title }}</b>. We currently have feedback from {{ event_feedback_list|length }} users.</p>
{% for event_feedback in event_feedback_list %}
{% include 'includes/event_feedback_detail_panel.html' %}
{% endfor %}
{% endblock program_content %}