2020-05-27 12:24:06 +00:00
|
|
|
{% extends "base.html" %}
|
2020-05-19 16:53:54 +00:00
|
|
|
{% load bootstrap4 %}
|
2020-06-15 08:46:13 +00:00
|
|
|
{% load icons %}
|
2020-05-27 12:24:06 +00:00
|
|
|
{% load i18n %}
|
|
|
|
|
|
|
|
{% block title %}{%trans "Delete" %}{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<form method="post">
|
|
|
|
{% csrf_token %}
|
|
|
|
<div class="alert alert-warning">
|
|
|
|
{%trans "Are you sure you want to delete" %} "{{ object }}"?
|
|
|
|
</div>
|
|
|
|
<a class="btn btn-primary" href="javascript:history.back()">{% icon 'times' %} {% trans "Cancel" %}</a>
|
|
|
|
<button type="submit" class="btn btn-danger">
|
|
|
|
{% icon 'check' %} {% trans "Delete" %}
|
|
|
|
</button>
|
|
|
|
</form>
|
|
|
|
{% endblock %}
|