{% for column_index in 0..column_names|length - 1 %} {# If 'Function' column is present trying to change comment #} {% if geom_column_flag %} {% include 'table/search/geom_func.twig' with { 'column_index': column_index, 'column_types': column_types } only %} {% endif %} {# Displays column's name, type, collation and value #} {{ column_names[column_index] }} {% set properties = self.getColumnProperties(column_index, column_index) %} {{ properties['type'] }} {{ properties['collation'] }} {{ properties['func']|raw }} {# here, the data-type attribute is needed for a date/time picker #} {{ properties['value']|raw }} {# Displays hidden fields #} {% endfor %}