bornhack-website/src/villages/templates/village_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

19 lines
603 B
HTML

{% extends 'base.html' %}
{% load commonmark %}
{% block title %}
Are you sure you want to delete the village "{{ village }}"? | {{ block.super }}
{% endblock %}
{% block content %}
<form action="" method="post" class="col-md-6 col-md-offset-3">{% csrf_token %}
<p>Are you sure you want to delete the village "{{ village }}"?</p>
<button type="submit" class="btn btn-danger form-control">Confirm</button>
<br />
<br />
<a href="{% url 'village_detail' camp_slug=village.camp.slug slug=village.slug %}"
class="btn btn-default form-control">Cancel</a>
</form>
{% endblock %}