Files
arif_grafin/pma/templates/database/qbe/column_select_cell.twig
dev@siliconpin.com a3067c5ad4 first commit
2025-08-07 11:53:41 +05:30

12 lines
393 B
Twig

<td class="text-center">
<select name="criteriaColumn[{{ column_number }}]" size="1">
<option value="">&nbsp;</option>
{% for column in column_names %}
<option value="{{ column }}"
{%- if column is same as(selected) %} selected="selected"{% endif %}>
{{- column -}}
</option>
{% endfor %}
</select>
</td>