Initial commit
This commit is contained in:
11
pma/templates/database/qbe/column_select_cell.twig
Normal file
11
pma/templates/database/qbe/column_select_cell.twig
Normal file
@ -0,0 +1,11 @@
|
||||
<td class="text-center">
|
||||
<select name="criteriaColumn[{{ column_number }}]" size="1">
|
||||
<option value=""> </option>
|
||||
{% for column in column_names %}
|
||||
<option value="{{ column }}"
|
||||
{%- if column is same as(selected) %} selected="selected"{% endif %}>
|
||||
{{- column -}}
|
||||
</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
</td>
|
Reference in New Issue
Block a user