bornhack-website/src/teams/templates/team_shift_confirm_delete.html

15 lines
339 B
HTML
Raw Normal View History

2018-08-05 10:18:10 +00:00
{% extends 'team_base.html' %}
{% block title %}
Are you sure you want to delete {{ object }}? | {{ block.super }}
{% endblock %}
2018-08-05 10:18:10 +00:00
{% block team_content %}
<form method="post">{% csrf_token %}
2018-08-05 16:21:30 +00:00
<p>Are you sure you want to delete {{ object }}?</p>
2018-08-05 10:18:10 +00:00
<input type="submit" class="btn btn-danger" value="Confirm" />
</form>
{% endblock %}