aboutsummaryrefslogtreecommitdiff
path: root/srcs/phpmyadmin/templates/database/structure/show_create_row.twig
blob: db18cddfe844b0f8fe93fd6a5c8908f297d8acb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<fieldset>
    <legend>{{ title }}</legend>
    <table class="show_create">
        <thead>
        <tr>
            <th>{{ raw_title }}</th>
            <th>{{ 'Create %s'|trans|format(raw_title) }}</th>
        </tr>
        </thead>
        <tbody>
        {% for object in db_objects %}
            <tr>
                <td><strong>{{ object|mime_default_function }}</strong></td>
                <td>{{ dbi.getTable(db, object).showCreate()|mime_default_function }}</td>
            </tr>
        {% endfor %}
        </tbody>
    </table>
</fieldset>