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/data_dictionary/index.twig | 65 ---------------------- 1 file changed, 65 deletions(-) delete mode 100644 srcs/phpmyadmin/templates/database/data_dictionary/index.twig (limited to 'srcs/phpmyadmin/templates/database/data_dictionary/index.twig') diff --git a/srcs/phpmyadmin/templates/database/data_dictionary/index.twig b/srcs/phpmyadmin/templates/database/data_dictionary/index.twig deleted file mode 100644 index 2f5dc5a..0000000 --- a/srcs/phpmyadmin/templates/database/data_dictionary/index.twig +++ /dev/null @@ -1,65 +0,0 @@ -

{{ database }}

-{% if comment is not empty %} -

{% trans 'Database comment:' %} {{ comment }}

-{% endif %} - -
- {% for table in tables %} -
-

{{ table.name }}

- {% if table.comment is not empty %} -

{% trans 'Table comments:' %} {{ table.comment }}

- {% endif %} - - - - - - - - {% if table.has_relation %} - - {% endif %} - - {% if table.has_mime %} - - {% endif %} - - {% for column in table.columns %} - - - - - - {% if table.has_relation %} - - {% endif %} - - {% if table.has_mime %} - - {% endif %} - - {% endfor %} -
{% trans 'Column' %}{% trans 'Type' %}{% trans 'Null' %}{% trans 'Default' %}{% trans 'Links to' %}{% trans 'Comments' %}{% trans 'Media (MIME) type' %}
- {{ column.name }} - {% if column.has_primary_key %} - ({% trans 'Primary' %}) - {% endif %} - - {{ column.print_type }} - {{ column.is_nullable ? 'Yes'|trans : 'No'|trans }} - {% if column.default is null and column.is_nullable %} - NULL - {% else %} - {{ column.default }} - {% endif %} - {{ column.relation }}{{ column.comment }}{{ column.mime }}
- - {{ table.indexes_table|raw }} -
- {% endfor %} -
- - -- cgit