aboutsummaryrefslogtreecommitdiff
path: root/srcs/phpmyadmin/templates/table/tracking/structure_snapshot_indexes.twig
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2020-07-27 10:05:23 +0200
committerCharles Cabergs <me@cacharle.xyz>2020-07-27 10:05:23 +0200
commit5bf66662a9bdd62c5bccab15e607cd95cfb8fcab (patch)
tree39a1a4629749056191c05dfd899f931701b7acf3 /srcs/phpmyadmin/templates/table/tracking/structure_snapshot_indexes.twig
parent5afd237bbd22028b85532b8c0b3fcead49a00764 (diff)
downloadft_server-5bf66662a9bdd62c5bccab15e607cd95cfb8fcab.tar.gz
ft_server-5bf66662a9bdd62c5bccab15e607cd95cfb8fcab.tar.bz2
ft_server-5bf66662a9bdd62c5bccab15e607cd95cfb8fcab.zip
Removed wordpress and phpmyadmin, my server doesn't handle it well and it brings shame on my famillyHEADmaster
Diffstat (limited to 'srcs/phpmyadmin/templates/table/tracking/structure_snapshot_indexes.twig')
-rw-r--r--srcs/phpmyadmin/templates/table/tracking/structure_snapshot_indexes.twig33
1 files changed, 0 insertions, 33 deletions
diff --git a/srcs/phpmyadmin/templates/table/tracking/structure_snapshot_indexes.twig b/srcs/phpmyadmin/templates/table/tracking/structure_snapshot_indexes.twig
deleted file mode 100644
index a919252..0000000
--- a/srcs/phpmyadmin/templates/table/tracking/structure_snapshot_indexes.twig
+++ /dev/null
@@ -1,33 +0,0 @@
-<h3>{% trans 'Indexes' %}</h3>
-<table id="tablestructure_indexes" class="data">
- <thead>
- <tr>
- <th>{% trans 'Keyname' %}</th>
- <th>{% trans 'Type' %}</th>
- <th>{% trans 'Unique' %}</th>
- <th>{% trans 'Packed' %}</th>
- <th>{% trans 'Column' %}</th>
- <th>{% trans 'Cardinality' %}</th>
- <th>{% trans 'Collation' %}</th>
- <th>{% trans 'Null' %}</th>
- <th>{% trans 'Comment' %}</th>
- </tr>
- </thead>
- <tbody>
- {% for index in indexes %}
- <tr class="noclick">
- <td>
- <strong>{{ index['Key_name'] }}</strong>
- </td>
- <td>{{ index['Index_type'] }}</td>
- <td>{{ index['Non_unique'] == 0 ? 'Yes'|trans : 'No'|trans }}</td>
- <td>{{ index['Packed'] != '' ? 'Yes'|trans : 'No'|trans }}</td>
- <td>{{ index['Column_name'] }}</td>
- <td>{{ index['Cardinality'] }}</td>
- <td>{{ index['Collation'] }}</td>
- <td>{{ index['Null'] }}</td>
- <td>{{ index['Comment'] }}</td>
- </tr>
- {% endfor %}
- </tbody>
-</table>