From 5bf66662a9bdd62c5bccab15e607cd95cfb8fcab Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Mon, 27 Jul 2020 10:05:23 +0200 Subject: Removed wordpress and phpmyadmin, my server doesn't handle it well and it brings shame on my familly --- .../templates/database/structure/table_header.twig | 78 ---------------------- 1 file changed, 78 deletions(-) delete mode 100644 srcs/phpmyadmin/templates/database/structure/table_header.twig (limited to 'srcs/phpmyadmin/templates/database/structure/table_header.twig') diff --git a/srcs/phpmyadmin/templates/database/structure/table_header.twig b/srcs/phpmyadmin/templates/database/structure/table_header.twig deleted file mode 100644 index e479f5e..0000000 --- a/srcs/phpmyadmin/templates/database/structure/table_header.twig +++ /dev/null @@ -1,78 +0,0 @@ -
-{{ get_hidden_inputs(db) }} -
- - - - - - {% if replication %} - - {% endif %} - - {% if db_is_system_schema %} - {% set action_colspan = 3 %} - {% else %} - {% set action_colspan = 6 %} - {% endif %} - {% if num_favorite_tables > 0 %} - {% set action_colspan = action_colspan + 1 %} - {% endif %} - - {# larger values are more interesting so default sort order is DESC #} - - {% if not (properties_num_columns > 1) %} - - - {% endif %} - - {% if is_show_stats %} - {# larger values are more interesting so default sort order is DESC #} - - {# larger values are more interesting so default sort order is DESC #} - - {% endif %} - - {% if show_charset %} - - {% endif %} - - {% if show_comment %} - - {% endif %} - - {% if show_creation %} - {# newer values are more interesting so default sort order is DESC #} - - {% endif %} - - {% if show_last_update %} - {# newer values are more interesting so default sort order is DESC #} - - {% endif %} - - {% if show_last_check %} - {# newer values are more interesting so default sort order is DESC #} - - {% endif %} - - - - {% for structure_table_row in structure_table_rows %} - {% include 'database/structure/structure_table_row.twig' with structure_table_row only %} - {% endfor %} - - {% if body_for_table_summary %} - {% include 'database/structure/body_for_table_summary.twig' with body_for_table_summary only %} - {% endif %} -
{{ sortable_table_header('Table'|trans, 'table') }}{% trans 'Replication' %} - {% trans 'Action' %} - - {{ sortable_table_header('Rows'|trans, 'records', 'DESC') }} - {{ show_hint('May be approximate. Click on the number to get the exact count. See [doc@faq3-11]FAQ 3.11[/doc].'|trans|sanitize) }} - {{ sortable_table_header('Type'|trans, 'type') }}{{ sortable_table_header('Collation'|trans, 'collation') }}{{ sortable_table_header('Size'|trans, 'size', 'DESC') }}{{ sortable_table_header('Overhead'|trans, 'overhead', 'DESC') }}{{ sortable_table_header('Charset'|trans, 'charset') }}{{ sortable_table_header('Comment'|trans, 'comment') }}{{ sortable_table_header('Creation'|trans, 'creation', 'DESC') }}{{ sortable_table_header('Last update'|trans, 'last_update', 'DESC') }}{{ sortable_table_header('Last check'|trans, 'last_check', 'DESC') }}
-
-{% if check_all_tables %} - {% include 'database/structure/check_all_tables.twig' with check_all_tables only %} -{% endif %} -
-- cgit