24 lines
No EOL
695 B
HTML
24 lines
No EOL
695 B
HTML
{% extends "base.html" %}
|
|
{% comment %}
|
|
SPDX-License-Identifier: GPL-3.0-or-later
|
|
{% endcomment %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% trans "Delete confirmation" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<h1>{% trans "Delete confirmation" %}</h1>
|
|
<form method="post">{% csrf_token %}
|
|
<p>
|
|
{% blocktranslate trimmed %}
|
|
Are you sure you want to delete <code>{{ object }}</code>?
|
|
{% endblocktranslate %}
|
|
</p>
|
|
{{ form }}
|
|
<input type="submit" class="btn btn-danger" value="{% trans "Confirm" %}">
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |