8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2024-11-24 20:33:11 +00:00

Overwrite admin templates (4), thanks edpibu :)

This commit is contained in:
Alexandre Iooss 2019-02-17 19:36:51 +01:00 committed by Alexandre IOOSS
parent b1758da49f
commit 0c49a3b077

View file

@ -0,0 +1,16 @@
{# Please keep this template in sync with django/contrib/admin one #}
{% load i18n bootstrap3 %}
<div class="actions">
{% bootstrap_form action_form layout='inline' form_group_class='form-group-sm col-xs-4 row' %}
<button type="submit" class="btn btn-sm btn-default" title="{% trans "Run the selected action" %}" name="index" value="{{ action_index|default:0 }}">{% trans "Go" %}</button>
{% if actions_selection_counter %}
<span class="action-counter label label-info" data-actions-icnt="{{ cl.result_list|length }}">{{ selection_note }}</span>
{% if cl.result_count != cl.result_list|length %}
<span class="all label label-info">{{ selection_note_all }}</span>
<span class="question label label-primary">
<a href="#" title="{% trans "Click here to select the objects across all pages" %}">{% blocktrans with cl.result_count as total_count %}Select all {{ total_count }} {{ module_name }}{% endblocktrans %}</a>
</span>
<span class="clear label label-warning"><a href="#">{% trans "Clear selection" %}</a></span>
{% endif %}
{% endif %}
</div>