Skip to content

Commit

Permalink
fix django actions behavior
Browse files Browse the repository at this point in the history
  • Loading branch information
wuyue92tree committed Mar 6, 2024
1 parent bee0e0b commit 02b7610
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions adminlteui/templates/admin/actions.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
{% if actions_selection_counter %}
<span class="action-counter" data-actions-icnt="{{ cl.result_list|length }}">{{ selection_note }}</span>
{% if cl.result_count != cl.result_list|length %}
<span class="all" style="display: none;">{{ selection_note_all }}</span>
<span class="question" style="display: none;">
<span class="all hidden">{{ selection_note_all }}</span>
<span class="question hidden">
<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" style="display: none;"><a href="#">{% trans "Clear selection" %}</a></span>
<span class="clear hidden"><a href="#">{% trans "Clear selection" %}</a></span>
{% endif %}
{% endif %}
{% endblock %}
Expand Down

0 comments on commit 02b7610

Please sign in to comment.