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/table/search/rows_normal.twig | 39 ---------------------- 1 file changed, 39 deletions(-) delete mode 100644 srcs/phpmyadmin/templates/table/search/rows_normal.twig (limited to 'srcs/phpmyadmin/templates/table/search/rows_normal.twig') diff --git a/srcs/phpmyadmin/templates/table/search/rows_normal.twig b/srcs/phpmyadmin/templates/table/search/rows_normal.twig deleted file mode 100644 index 5e21efa..0000000 --- a/srcs/phpmyadmin/templates/table/search/rows_normal.twig +++ /dev/null @@ -1,39 +0,0 @@ -{% for column_index in 0..column_names|length - 1 %} - - {# If 'Function' column is present trying to change comment #} - {% if geom_column_flag %} - {% include 'table/search/geom_func.twig' with { - 'column_index': column_index, - 'column_types': column_types - } only %} - {% endif %} - {# Displays column's name, type, collation and value #} - - {{ column_names[column_index] }} - - {% set properties = self.getColumnProperties(column_index, column_index) %} - - {{ properties['type'] }} - - - {{ properties['collation'] }} - - - {{ properties['func']|raw }} - - {# here, the data-type attribute is needed for a date/time picker #} - - {{ properties['value']|raw }} - {# Displays hidden fields #} - - - - - -{% endfor %} -- cgit