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.
48 lines
1.3 KiB
48 lines
1.3 KiB
2 years ago
|
<div class="show_create_results">
|
||
|
<h2>{% trans 'Showing create queries' %}</h2>
|
||
|
|
||
|
{% if tables.tables is not empty %}
|
||
|
<fieldset class="pma-fieldset">
|
||
|
<legend>{% trans 'Tables' %}</legend>
|
||
|
<table class="table table-light table-striped show_create">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th>{% trans 'Table' %}</th>
|
||
|
<th>{% trans 'Create table' %}</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
{% for table in tables.tables %}
|
||
|
<tr>
|
||
|
<td><strong>{{ table.name }}</strong></td>
|
||
|
<td>{{ table.show_create|raw }}</td>
|
||
|
</tr>
|
||
|
{% endfor %}
|
||
|
</tbody>
|
||
|
</table>
|
||
|
</fieldset>
|
||
|
{% endif %}
|
||
|
|
||
|
{% if tables.views is not empty %}
|
||
|
<fieldset class="pma-fieldset">
|
||
|
<legend>{% trans 'Views' %}</legend>
|
||
|
<table class="table table-light table-striped show_create">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th>{% trans 'View' %}</th>
|
||
|
<th>{% trans 'Create view' %}</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
{% for view in tables.views %}
|
||
|
<tr>
|
||
|
<td><strong>{{ view.name }}</strong></td>
|
||
|
<td>{{ view.show_create|raw }}</td>
|
||
|
</tr>
|
||
|
{% endfor %}
|
||
|
</tbody>
|
||
|
</table>
|
||
|
</fieldset>
|
||
|
{% endif %}
|
||
|
</div>
|