You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
576 B
15 lines
576 B
2 years ago
|
<form action="{{ url('/table/structure/partitioning') }}" method="post">
|
||
|
{{ get_hidden_inputs(db, table) }}
|
||
|
|
||
|
<fieldset class="pma-fieldset">
|
||
|
<legend>{% trans 'Edit partitioning' %}</legend>
|
||
|
{% include 'columns_definitions/partitions.twig' with {
|
||
|
'partition_details': partition_details,
|
||
|
'storage_engines': storage_engines
|
||
|
} only %}
|
||
|
</fieldset>
|
||
|
<fieldset class="pma-fieldset tblFooters">
|
||
|
<input class="btn btn-primary" type="submit" name="save_partitioning" value="{% trans 'Save' %}">
|
||
|
</fieldset>
|
||
|
</form>
|