table_headers_for_columns.twig 607 B

123456789101112
  1. {% for column in columns %}
  2. <th class="draggable position-sticky{{ column.is_column_numeric ? ' text-end' }}{{ column.is_column_hidden ? ' hide' -}}
  3. {{- is_sortable ? ' column_heading' }}{{ is_sortable and column.is_browse_marker_enabled ? ' marker' }}{{ is_sortable and column.is_browse_pointer_enabled ? ' pointer' -}}
  4. {{- not is_sortable and column.has_condition ? ' condition' }}" data-column="{{ column.column_name }}">
  5. {% if is_sortable %}
  6. {{ column.order_link|raw }}
  7. {% else %}
  8. {{ column.column_name }}
  9. {% endif %}
  10. {{ column.comments|raw }}
  11. </th>
  12. {% endfor %}