Server IP : 15.235.198.142 / Your IP : 216.73.216.240 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ballsack 6.8.0-45-generic #45-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 30 12:02:04 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /proc/thread-self/root/usr/share/phpmyadmin/templates/database/structure/ |
Upload File : |
<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-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|raw }}</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-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>