bornhack-website/src/teams/templates/team_shift_confirm_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

15 lines
339 B
HTML

{% extends 'team_base.html' %}
{% block title %}
Are you sure you want to delete {{ object }}? | {{ block.super }}
{% endblock %}
{% block team_content %}
<form method="post">{% csrf_token %}
<p>Are you sure you want to delete {{ object }}?</p>
<input type="submit" class="btn btn-danger" value="Confirm" />
</form>
{% endblock %}