bornhack-website/src/villages/templates/village_confirm_delete.html

19 lines
603 B
HTML
Raw Normal View History

{% 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 %}