Update website
This commit is contained in:
parent
a0b0d3dae7
commit
ae7ef6ad45
3151 changed files with 566766 additions and 48 deletions
7
admin/phpMyAdmin/templates/sql/set_column.twig
Normal file
7
admin/phpMyAdmin/templates/sql/set_column.twig
Normal file
|
@ -0,0 +1,7 @@
|
|||
{% set values_amount = values|length %}
|
||||
{% set selected_values = current_values|split(',') %}
|
||||
<select size="{{ values_amount < 10 ? values_amount : 10 }}" multiple>
|
||||
{% for value in values %}
|
||||
<option value="{{ value }}"{{ value in selected_values ? ' selected' }}>{{ value }}</option>
|
||||
{% endfor %}
|
||||
</select>
|
Loading…
Add table
Add a link
Reference in a new issue