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

- {{ get_image('s_tbl') }} - {% trans 'Binary log' %} -

- -
- {{ get_hidden_inputs(url_params) }} -
- - {% trans 'Select binary log to view' %} - - - {% set full_size = 0 %} - - {{ binary_logs|length }} - {% trans 'Files' %}, - {% if full_size > 0 %} - {{ format_byte_down(full_size)|join(' ') }} - {% endif %} -
- -
- -
-
- -{{ sql_message|raw }} - - - - - - - - - - - - - - - - - - {% for value in values %} - - - - - - - - - {% endfor %} - -
- {% if has_previous %} - {% if has_icons %} - - « - - {% else %} - - {% trans %}Previous{% context %}Previous page{% endtrans %} « - - {% endif %} - - - {% endif %} - - {% if is_full_query %} - - {% trans 'Truncate shown queries' %} - - {% else %} - - {% trans 'Show full queries' %} - - {% endif %} - - {% if has_next %} - - - {% if has_icons %} - - » - - {% else %} - - {% trans %}Next{% context %}Next page{% endtrans %} » - - {% endif %} - {% endif %} -
{% trans 'Log name' %}{% trans 'Position' %}{% trans 'Event type' %}{% trans 'Server ID' %}{% trans 'Original position' %}{% trans 'Information' %}
{{ value['Log_name'] }}{{ value['Pos'] }}{{ value['Event_type'] }}{{ value['Server_id'] }} - {{- value['Orig_log_pos'] is defined ? value['Orig_log_pos'] : value['End_log_pos'] -}} - {{ format_sql(value['Info'], not is_full_query) }}
-- cgit