{% if geom_column_flag %}
{% trans 'Function' %} |
{% endif %}
{% trans 'Column' %} |
{% trans 'Type' %} |
{% trans 'Collation' %} |
{% trans 'Operator' %} |
{% trans 'Value' %} |
{% for column_index in 0..column_names|length - 1 %}
{# If 'Function' column is present trying to change comment #}
{% if geom_column_flag %}
{# Displays 'Function' column if it is present #}
{% set geom_types = get_gis_datatypes() %}
{% if column_types[column_index] in geom_types %}
{% endif %}
|
{% endif %}
{# Displays column's name, type, collation and value #}
{#- Keep this without extra spaces because it is used for a request to build the BETWEEN modal -#}
{{- 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 %}
{% if default_sliders_state != 'disabled' %}
{% endif %}