templates/includes/partials/mass/_mass_effect.html.twig line 1

Open in your IDE?
  1. {% if mass_options is defined and mass_options|length > 0 %}
  2.     <select class="form-select mass_select" name="mass_action">
  3.         <option value="">Acciones en masa para los elementos seleccionados</option>
  4.         {% for key, option in mass_options %}
  5.             <option value="{{ key }}">{{ option }}</option>
  6.         {% endfor %}
  7.     </select>
  8. {% endif %}