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

11 lines
239 B
HTML

{% extends 'team_base.html' %}
{% 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 %}