friendsmap/map/templates/map/delete_location.html
2019-03-03 18:13:49 +01:00

21 lines
692 B
HTML

{% extends 'map/base.html' %}
{% load crispy_forms_filters %}
{% block title %}Delete your location{% endblock %}
{% block h1 %}Delete your location{% endblock %}
{% block content %}
<div class="alert alert-warning">
<h4 class="alert-heading">Are you sure?</h4>
<div>
Are you sure you want to delete your location ? This can't be undone,
though you will be able to add it again in the future.
</div>
</div>
<form method="post">
{% csrf_token %}
<button type="submit" class="btn btn-danger">Yes I'm sure</button>
<a href="{% url 'map' %}" class="btn btn-secondary">No, cancel</a>
</form>
{% endblock %}