20 lines
544 B
HTML
20 lines
544 B
HTML
{% extends "administration/base.html" %}
|
|
|
|
{% load i18n %}
|
|
{% load utils %}
|
|
|
|
{% block content %}
|
|
<div class="container">
|
|
{% block above_form %}
|
|
<h1>{% trans 'Delete' %}</h1>
|
|
{% endblock %}
|
|
<div class="">
|
|
<form method="post" class="form-horizontal">
|
|
{% csrf_token %}
|
|
<p>Are you sure you want to delete "{{ object }}"?</p>
|
|
<a href="{% back %}" class="btn btn-default">{% trans 'Back' %}</a>
|
|
<input type="submit" class="btn btn-danger" value="{% trans 'Delete' %}" />
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |