mirror of
https://github.com/jazzband/django-admin2.git
synced 2026-03-22 09:03:02 +00:00
23 lines
650 B
HTML
23 lines
650 B
HTML
{% extends "admin2/bootstrap/base.html" %}
|
|
{% load i18n %}
|
|
{% block content %}
|
|
|
|
<p>{% blocktrans with objects_name=objects_name %}Are you sure you want to delete the selected {{ objects_name }}?{% endblocktrans %}</p>
|
|
|
|
<ul>
|
|
{% for item in queryset %}
|
|
<li>{{ item }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
<input type="hidden" name="confirmed" value="yes" />
|
|
<input type="hidden" name="action" value="delete_selected" />
|
|
{% for item in queryset %}
|
|
<input type="hidden" name="selected_model_pk" value="{{ item.pk }}" />
|
|
{% endfor %}
|
|
<input type="submit"/>
|
|
</form>
|
|
|
|
{% endblock content %}
|