component_list.html 793 B

12345678910111213141516171819202122
  1. {% extends 'generic/object_list.html' %}
  2. {% load buttons %}
  3. {% load helpers %}
  4. {% load i18n %}
  5. {% block bulk_buttons %}
  6. <div class="btn-group" role="group">
  7. {% if 'bulk_edit' in actions %}
  8. {% bulk_edit_button model query_params=request.GET %}
  9. {% endif %}
  10. {% if 'bulk_rename' in actions %}
  11. {% with bulk_rename_view=model|validated_viewname:"bulk_rename" %}
  12. <button type="submit" name="_rename" {% formaction %}="{% url bulk_rename_view %}" class="btn btn-outline-warning">
  13. <i class="mdi mdi-pencil-outline" aria-hidden="true"></i> {% trans "Rename Selected" %}
  14. </button>
  15. {% endwith %}
  16. {% endif %}
  17. </div>
  18. {% if 'bulk_delete' in actions %}
  19. {% bulk_delete_button model query_params=request.GET %}
  20. {% endif %}
  21. {% endblock %}