This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2018-11-26 21:30:14 +00:00
|
|
|
{% extends "administration/base.html" %}
|
|
|
|
|
|
|
|
{% load i18n %}
|
|
|
|
{% load utils %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="container">
|
2019-02-26 08:46:44 +00:00
|
|
|
{% block above_form %}
|
2019-03-08 11:47:50 +00:00
|
|
|
<h1>{% blocktrans with object_type=object|verbose_name %}Delete {{ object_type }}{% endblocktrans %}</h1>
|
2019-02-26 08:46:44 +00:00
|
|
|
{% endblock %}
|
|
|
|
<div class="">
|
|
|
|
<form method="post" class="form-horizontal">
|
|
|
|
{% csrf_token %}
|
|
|
|
<p>
|
2019-03-08 11:47:50 +00:00
|
|
|
{% blocktrans with object_type=object|verbose_name name=object %}
|
2019-02-26 08:46:44 +00:00
|
|
|
Are you sure you want to delete {{ object_type }} "{{ object }}"?
|
|
|
|
{% endblocktrans %}
|
|
|
|
</p>
|
2019-03-14 20:17:41 +00:00
|
|
|
<input type="hidden" name="confirmdelete" value="yes">
|
2019-02-26 08:46:44 +00:00
|
|
|
<a href="{% back %}" class="btn btn-default">{% trans 'Back' %}</a>
|
|
|
|
<input type="submit" class="btn btn-danger" value="{% trans 'Delete' %}" />
|
|
|
|
</form>
|
|
|
|
</div>
|
2018-11-26 21:30:14 +00:00
|
|
|
</div>
|
2019-02-26 08:46:44 +00:00
|
|
|
{% endblock %}
|