1 <div class="clearfloat print_ignore"> 2 <img class="selectallarrow" src="{{ theme_image_path }}arrow_{{ text_dir }}.png" width="38" height="22" alt="{% trans 'With selected:' %}"> 3 <input type="checkbox" id="tablesForm_checkall" class="checkall_box" title="{% trans 'Check all' %}"> 4 <label for="tablesForm_checkall">{% trans 'Check all' %}</label> 5 {% if overhead_check != '' %} 6 / <a href="#" class="checkall-filter" data-checkall-selector=".tbl-overhead">{% trans 'Check tables having overhead' %}</a> 7 {% endif %} 8 <select name="submit_mult" style="margin: 0 3em 0 3em;"> 9 <option value="{% trans 'With selected:' %}" selected="selected">{% trans 'With selected:' %}</option> 10 <option value="copy_tbl">{% trans 'Copy table' %}</option> 11 <option value="show_create">{% trans 'Show create' %}</option> 12 <option value="export">{% trans 'Export' %}</option> 13 {% if not db_is_system_schema and not disable_multi_table %} 14 <optgroup label="{% trans 'Delete data or table' %}"> 15 <option value="empty_tbl">{% trans 'Empty' %}</option> 16 <option value="drop_tbl">{% trans 'Drop' %}</option> 17 </optgroup> 18 <optgroup label="{% trans 'Table maintenance' %}"> 19 <option value="analyze_tbl">{% trans 'Analyze table' %}</option> 20 <option value="check_tbl">{% trans 'Check table' %}</option> 21 <option value="checksum_tbl">{% trans 'Checksum table' %}</option> 22 <option value="optimize_tbl">{% trans 'Optimize table' %}</option> 23 <option value="repair_tbl">{% trans 'Repair table' %}</option> 24 </optgroup> 25 <optgroup label="{% trans 'Prefix' %}"> 26 <option value="add_prefix_tbl">{% trans 'Add prefix to table' %}</option> 27 <option value="replace_prefix_tbl">{% trans 'Replace table prefix' %}</option> 28 <option value="copy_tbl_change_prefix">{% trans 'Copy table with prefix' %}</option> 29 </optgroup> 30 {% endif %} 31 {% if central_columns_work is defined and central_columns_work %} 32 <optgroup label="{% trans 'Central columns' %}"> 33 <option value="sync_unique_columns_central_list">{% trans 'Add columns to central list' %}</option> 34 <option value="delete_unique_columns_central_list">{% trans 'Remove columns from central list' %}</option> 35 <option value="make_consistent_with_central_list">{% trans 'Make consistent with central list' %}</option> 36 </optgroup> 37 {% endif %} 38 </select> 39 {{ hidden_fields|join('\n')|raw }} 40 </div>