init web ems all
This commit is contained in:
11
phpMyAdmin/templates/database/qbe/column_select_cell.twig
Executable file
11
phpMyAdmin/templates/database/qbe/column_select_cell.twig
Executable file
@@ -0,0 +1,11 @@
|
||||
<td class="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|e|replace({' ': ' '}) }}
|
||||
</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
</td>
|
||||
16
phpMyAdmin/templates/database/qbe/footer_options.twig
Executable file
16
phpMyAdmin/templates/database/qbe/footer_options.twig
Executable file
@@ -0,0 +1,16 @@
|
||||
<div class="floatleft">
|
||||
{% if type == 'row' %}
|
||||
{% trans 'Add/Delete criteria rows' %}:
|
||||
{% else %}
|
||||
{% trans 'Add/Delete columns' %}:
|
||||
{% endif %}
|
||||
<select size="1" name="{{ type == 'row' ? 'criteriaRowAdd' : 'criteriaColumnAdd' }}">
|
||||
<option value="-3">-3</option>
|
||||
<option value="-2">-2</option>
|
||||
<option value="-1">-1</option>
|
||||
<option value="0" selected="selected">0</option>
|
||||
<option value="1">1</option>
|
||||
<option value="2">2</option>
|
||||
<option value="3">3</option>
|
||||
</select>
|
||||
</div>
|
||||
10
phpMyAdmin/templates/database/qbe/sort_order_select_cell.twig
Executable file
10
phpMyAdmin/templates/database/qbe/sort_order_select_cell.twig
Executable file
@@ -0,0 +1,10 @@
|
||||
<td class="center">
|
||||
<select name="criteriaSortOrder[{{ column_number }}]">
|
||||
<option value="1000"> </option>
|
||||
{% for i in 1..total_column_count %}
|
||||
<option value="{{ i }}"{{ i == sort_order ? ' selected="selected"' }}>
|
||||
{{ i }}
|
||||
</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
</td>
|
||||
9
phpMyAdmin/templates/database/qbe/sort_select_cell.twig
Executable file
9
phpMyAdmin/templates/database/qbe/sort_select_cell.twig
Executable file
@@ -0,0 +1,9 @@
|
||||
<td class="center">
|
||||
<select style="width:{{ real_width }}" name="criteriaSort[{{ column_number }}]" size="1">
|
||||
<option value=""> </option>
|
||||
<option value="ASC"
|
||||
{{- selected == 'ASC' ? ' selected="selected"' }}>{% trans 'Ascending' %}</option>
|
||||
<option value="DESC"
|
||||
{{- selected == 'DESC' ? ' selected="selected"' }}>{% trans 'Descending' %}</option>
|
||||
</select>
|
||||
</td>
|
||||
Reference in New Issue
Block a user