Welcome to mirror list, hosted at ThFree Co, Russian Federation.

edit.twig « central_columns « database « templates - github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9c7299759cb854907cc7a2b59766a72f85eac2a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<form id="multi_edit_central_columns">
  <table id="table_columns" class="table caption-top align-middle mb-0 noclick">
    <caption class="tblHeaders">{% trans 'Structure' %}</caption>
    <thead>
      <tr>
        <th>{% trans 'Name' %}</th>
        <th>{% trans 'Type' %}</th>
        <th>{% trans 'Length/Values' %}</th>
        <th>{% trans 'Default' %}</th>
        <th>{% trans 'Collation' %}</th>
        <th>{% trans 'Attributes' %}</th>
        <th>{% trans 'Null' %}</th>
        <th>{% trans %}A_I{% context %}Auto Increment{% endtrans %}</th>
      </tr>
    </thead>
    {{ rows|raw }}
  </table>

  <fieldset class="pma-fieldset tblFooters">
    <input class="btn btn-primary" type="submit" name="save_multi_central_column_edit" value="{% trans 'Save' %}">
  </fieldset>
</form>