18 lines
555 B
HTML
18 lines
555 B
HTML
{% extends "base.html" %}
|
|
{% load bootstrap %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="row">
|
|
<div class="col-lg-8">
|
|
<h3>Delete Horst <small><a href="{% url 'overview' %}"><i class="icon-double-angle-left"></i> back to overview</a></small></h3>
|
|
<form action="" method="post">
|
|
{% csrf_token %}
|
|
<p>Are you sure you want to delete "{{ object }}"?</p>
|
|
<button type="submit" class="btn btn-primary">Confirm</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
{% endblock %} |