No Description

actions.html 1.2KB

123456789101112131415161718192021222324
  1. {% load i18n %}
  2. <div class="actions">
  3. {% block actions %}
  4. {% block actions-form %}
  5. {% for field in action_form %}{% if field.label %}<label>{{ field.label }} {% endif %}{{ field }}{% if field.label %}</label>{% endif %}{% endfor %}
  6. {% endblock %}
  7. {% block actions-submit %}
  8. <button type="submit" class="button" title="{% translate "Run the selected action" %}" name="index" value="{{ action_index|default:0 }}">{% translate "Go" %}</button>
  9. {% endblock %}
  10. {% block actions-counter %}
  11. {% if actions_selection_counter %}
  12. <span class="action-counter" data-actions-icnt="{{ cl.result_list|length }}">{{ selection_note }}</span>
  13. {% if cl.result_count != cl.result_list|length %}
  14. <span class="all hidden">{{ selection_note_all }}</span>
  15. <span class="question hidden">
  16. <a href="#" title="{% translate "Click here to select the objects across all pages" %}">{% blocktranslate with cl.result_count as total_count %}Select all {{ total_count }} {{ module_name }}{% endblocktranslate %}</a>
  17. </span>
  18. <span class="clear hidden"><a href="#">{% translate "Clear selection" %}</a></span>
  19. {% endif %}
  20. {% endif %}
  21. {% endblock %}
  22. {% endblock %}
  23. </div>