bornhack-website/src/program/templates/event_feedback_delete.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

23 lines
625 B
HTML

{% extends 'program_base.html' %}
{% load commonmark %}
{% load bootstrap3 %}
{% block title %}
Delete Your Feedback? | {{ block.super }}
{% endblock %}
{% block program_content %}
<h2>Delete Your Feedback?</h2>
{% include 'includes/event_feedback_detail_panel.html' %}
<form method="POST">
{% csrf_token %}
<button type="submit" class="btn btn-danger">
<i class="fas fa-times"></i>
Delete Feedback
</button>
<a href="{% url 'program:event_feedback_detail' camp_slug=camp.slug event_slug=event.slug %}" class="btn btn-primary"><i class="fas fa-undo"></i> Cancel</a>
</form>
{% endblock program_content %}