bornhack-website/src/program/templates/eventfeedback_delete.html
Thomas Steen Rasmussen 33383e6559
Event feedback (#451)
* Event feedback functionality and related commits:

* blackness and isort and flake8 - this branch does not have pre-commit so I forgot :/

* finish backoffice management of eventfeedback

* add username to eventfeedback detail panel when viewed in backoffice

* Add feedback url to elm schedule. Fix access when user is anonymous. Remove print statement.

* one prefetch_related call to rule them all

Co-authored-by: Víðir Valberg Guðmundsson <valberg@orn.li>
2020-02-22 14:50:09 +01:00

19 lines
547 B
HTML

{% extends 'program_base.html' %}
{% load commonmark %}
{% load bootstrap3 %}
{% block program_content %}
<h2>Delete Your Feedback?</h2>
{% include 'includes/eventfeedback_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:eventfeedback_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 %}