|
11 | 11 | <div class="row g-3"> |
12 | 12 | <div class="col-auto"> |
13 | 13 | <label class="visually-hidden" for="tableOrderFieldSelect">{% trans 'Column' %}</label> |
14 | | - <select id="tableOrderFieldSelect" class="form-control" name="order_field" aria-describedby="tableOrderFieldSelectHelp"> |
| 14 | + <select id="tableOrderFieldSelect" class="form-select" name="order_field" aria-describedby="tableOrderFieldSelectHelp"> |
15 | 15 | {% for column in columns %} |
16 | 16 | <option value="{{ column.Field }}">{{ column.Field }}</option> |
17 | 17 | {% endfor %} |
|
53 | 53 | <div class="col-auto"> |
54 | 54 | <div class="input-group"> |
55 | 55 | {% if database_list is not empty %} |
56 | | - <select id="moveTableDatabaseInput" class="form-control" name="target_db" aria-label="{% trans 'Database' %}"> |
| 56 | + <select id="moveTableDatabaseInput" class="form-select" name="target_db" aria-label="{% trans 'Database' %}"> |
57 | 57 | {% for each_db in database_list %} |
58 | 58 | <option value="{{ each_db.name }}"{{ each_db.is_selected ? ' selected' }}>{{ each_db.name }}</option> |
59 | 59 | {% endfor %} |
|
135 | 135 | </label> |
136 | 136 | </div> |
137 | 137 | <div class="col-6"> |
138 | | - <select class="form-control" name="new_tbl_storage_engine" id="newTableStorageEngineSelect"> |
| 138 | + <select class="form-select" name="new_tbl_storage_engine" id="newTableStorageEngineSelect"> |
139 | 139 | {% for engine in storage_engines %} |
140 | 140 | <option value="{{ engine.name }}"{% if engine.comment is not empty %} title="{{ engine.comment }}"{% endif %} |
141 | 141 | {{- engine.name|lower == storage_engine|lower or (storage_engine is empty and engine.is_default) ? ' selected' }}> |
|
151 | 151 | <label for="collationSelect">{% trans 'Collation' %}</label> |
152 | 152 | </div> |
153 | 153 | <div class="col-6"> |
154 | | - <select class="form-control" id="collationSelect" lang="en" dir="ltr" name="tbl_collation"> |
| 154 | + <select class="form-select" id="collationSelect" lang="en" dir="ltr" name="tbl_collation"> |
155 | 155 | <option value=""></option> |
156 | 156 | {% for charset in charsets %} |
157 | 157 | <optgroup label="{{ charset.getName() }}" title="{{ charset.getDescription() }}"> |
|
177 | 177 | <label for="new_pack_keys">PACK_KEYS</label> |
178 | 178 | </div> |
179 | 179 | <div class="col-6"> |
180 | | - <select class="form-control" name="new_pack_keys" id="new_pack_keys"> |
| 180 | + <select class="form-select" name="new_pack_keys" id="new_pack_keys"> |
181 | 181 | <option value="DEFAULT"{{ pack_keys == 'DEFAULT' ? ' selected' }}>DEFAULT</option> |
182 | 182 | <option value="0"{{ pack_keys == '0' ? ' selected' }}>0</option> |
183 | 183 | <option value="1"{{ pack_keys == '1' ? ' selected' }}>1</option> |
|
227 | 227 | <label for="new_row_format">ROW_FORMAT</label> |
228 | 228 | </div> |
229 | 229 | <div class="col-12"> |
230 | | - <select class="form-control" id="new_row_format" name="new_row_format"> |
| 230 | + <select class="form-select" id="new_row_format" name="new_row_format"> |
231 | 231 | {% for row_format in row_formats %} |
232 | 232 | <option value="{{ row_format }}"{{ row_format == row_format_current|upper ? ' selected' }}>{{ row_format }}</option> |
233 | 233 | {% endfor %} |
|
254 | 254 | <div class="col-auto"> |
255 | 255 | <div class="input-group"> |
256 | 256 | {% if database_list is not empty %} |
257 | | - <select class="form-control" name="target_db" aria-label="{% trans 'Database' %}"> |
| 257 | + <select class="form-select" name="target_db" aria-label="{% trans 'Database' %}"> |
258 | 258 | {% for each_db in database_list %} |
259 | 259 | <option value="{{ each_db.name }}"{{ each_db.is_selected ? ' selected' }}>{{ each_db.name }}</option> |
260 | 260 | {% endfor %} |
|
478 | 478 | <div class="card-body"> |
479 | 479 | <div class="mb-3"> |
480 | 480 | <label for="partition_name">{% trans 'Partition' %}</label> |
481 | | - <select class="form-control resize-vertical" id="partition_name" name="partition_name[]" multiple required> |
| 481 | + <select class="form-select resize-vertical" id="partition_name" name="partition_name[]" multiple required> |
482 | 482 | {% for partition in partitions %} |
483 | 483 | <option value="{{ partition }}"{{ loop.first ? ' selected' }}>{{ partition }}</option> |
484 | 484 | {% endfor %} |
|
0 commit comments