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 --- .../table/structure/display_partitions.twig | 145 --------------------- 1 file changed, 145 deletions(-) delete mode 100644 srcs/phpmyadmin/templates/table/structure/display_partitions.twig (limited to 'srcs/phpmyadmin/templates/table/structure/display_partitions.twig') diff --git a/srcs/phpmyadmin/templates/table/structure/display_partitions.twig b/srcs/phpmyadmin/templates/table/structure/display_partitions.twig deleted file mode 100644 index b10a0bc..0000000 --- a/srcs/phpmyadmin/templates/table/structure/display_partitions.twig +++ /dev/null @@ -1,145 +0,0 @@ -
-
- - {% trans 'Partitions' %} - {{ show_mysql_docu('partitioning') }} - - {% if partitions is empty %} - {{ 'No partitioning defined!'|trans|notice }} - {% else %} -

- {% trans 'Partitioned by:' %} - {{ partition_method }}({{ partition_expression }}) -

- {% if has_sub_partitions %} -

- {% trans 'Sub partitioned by:' %} - {{ sub_partition_method }}({{ sub_partition_expression }}) -

- {% endif %} - - - - - - {% if has_description %} - - {% endif %} - - - - - - - - - {% for partition in partitions %} - - {% if has_sub_partitions %} - - - {% else %} - - {% endif %} - - {% if has_description %} - - {% endif %} - - - - - {% for action, icon in action_icons %} - - {% endfor %} - - {% if has_sub_partitions %} - {% for sub_partition in partition.getSubPartitions() %} - - - - - {% if has_description %} - - {% endif %} - - - - - - - {% endfor %} - {% endif %} - - {% endfor %} - -
#{% trans 'Partition' %}{% trans 'Expression' %}{% trans 'Rows' %}{% trans 'Data length' %}{% trans 'Index length' %}{% trans 'Comment' %} - {% trans 'Action' %} -
{{ partition.getOrdinal() }}{{ partition.getOrdinal() }}{{ partition.getName() }} - - {{- partition.getExpression() -}} - {{- partition.getMethod() == 'LIST' ? ' IN (' : ' < ' -}} - {{- partition.getDescription() -}} - {{- partition.getMethod() == 'LIST' ? ')' -}} - - {{ partition.getRows() }} - {% set data_length = format_byte_down( - partition.getDataLength(), - 3, - 1 - ) %} - {{ data_length[0] }} - {{ data_length[1] }} - - {% set index_length = format_byte_down( - partition.getIndexLength(), - 3, - 1 - ) %} - {{ index_length[0] }} - {{ index_length[1] }} - {{ partition.getComment() }} - - {{ icon|raw }} - -
{{ sub_partition.getOrdinal() }}{{ sub_partition.getName() }}{{ sub_partition.getRows() }} - {% set data_length = format_byte_down( - sub_partition.getDataLength(), - 3, - 1 - ) %} - {{ data_length[0] }} - {{ data_length[1] }} - - {% set index_length = format_byte_down( - sub_partition.getIndexLength(), - 3, - 1 - ) %} - {{ index_length[0] }} - {{ index_length[1] }} - {{ sub_partition.getComment() }}
- {% endif %} -

- -
-- cgit