2020-05-27 12:24:06 +00:00
|
|
|
{% extends "base.html" %}
|
2021-07-07 11:12:38 +00:00
|
|
|
{% load django_bootstrap5 %}
|
2023-08-09 06:20:18 +00:00
|
|
|
{% load bootstrap_icons %}
|
2020-05-27 12:24:06 +00:00
|
|
|
{% load i18n %}
|
|
|
|
|
2020-10-14 08:37:46 +00:00
|
|
|
{% block title %}{{ title }}{% endblock %}
|
|
|
|
|
2020-10-15 14:18:45 +00:00
|
|
|
{% block page_heading %}{{ title }}{% endblock page_heading %}
|
2020-05-27 12:24:06 +00:00
|
|
|
|
|
|
|
{% block content %}
|
2020-10-14 08:37:46 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="offset-3 col-6">
|
|
|
|
<form method="post">
|
|
|
|
{% csrf_token %}
|
|
|
|
<div class="alert alert-warning">
|
|
|
|
{%trans "Are you sure you want to delete" %} "{{ object }}"?
|
|
|
|
</div>
|
2021-07-07 11:12:38 +00:00
|
|
|
<div class="mb-0 float-end">
|
2023-08-09 06:20:18 +00:00
|
|
|
<a class="btn btn-primary" href="javascript:history.back()">{% bs_icon 'x' %} {% trans "Cancel" %}</a>
|
2020-10-14 08:37:46 +00:00
|
|
|
<button type="submit" class="btn btn-danger">
|
2023-08-09 06:20:18 +00:00
|
|
|
{% bs_icon 'trash' %} {% trans "Delete" %}
|
2020-10-14 08:37:46 +00:00
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
2020-05-27 12:24:06 +00:00
|
|
|
</div>
|
2020-10-14 08:37:46 +00:00
|
|
|
</div>
|
2020-05-27 12:24:06 +00:00
|
|
|
{% endblock %}
|