From 04d6d5ca99ebfd1cebb8ce06618fb3811fc1a8aa Mon Sep 17 00:00:00 2001 From: Charles Date: Thu, 9 Jan 2020 10:55:03 +0100 Subject: phpmyadmin working --- .../templates/navigation/item_unhide_dialog.twig | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 srcs/phpmyadmin/templates/navigation/item_unhide_dialog.twig (limited to 'srcs/phpmyadmin/templates/navigation/item_unhide_dialog.twig') diff --git a/srcs/phpmyadmin/templates/navigation/item_unhide_dialog.twig b/srcs/phpmyadmin/templates/navigation/item_unhide_dialog.twig new file mode 100644 index 0000000..8303b59 --- /dev/null +++ b/srcs/phpmyadmin/templates/navigation/item_unhide_dialog.twig @@ -0,0 +1,29 @@ +
+
+ {{ get_hidden_inputs(database, table) }} + + {% for type, label in types %} + {% if (item_type is empty or item_type == type) and hidden[type] is iterable %} + {{ not loop.first ? '
' }} + {{ label }} + + + {% for item in hidden[type] %} + + + + + {% endfor %} + +
{{ item }} + {{ get_icon('show', 'Unhide'|trans) }} +
+ {% endif %} + {% endfor %} +
+
-- cgit