Update website
This commit is contained in:
parent
a0b0d3dae7
commit
ae7ef6ad45
3151 changed files with 566766 additions and 48 deletions
36
admin/phpMyAdmin/templates/table/partition/analyze.twig
Normal file
36
admin/phpMyAdmin/templates/table/partition/analyze.twig
Normal file
|
@ -0,0 +1,36 @@
|
|||
<div class="container-fluid">
|
||||
<h2>{% trans 'Analyze partition' %}</h2>
|
||||
|
||||
{{ message|raw }}
|
||||
|
||||
{% for name, table in rows %}
|
||||
<div class="card mb-3">
|
||||
<div class="card-header">{{ name }} ({{ partition_name }})</div>
|
||||
|
||||
<ul class="list-group list-group-flush">
|
||||
{% for row in table %}
|
||||
<li class="list-group-item">
|
||||
{% if row.Op|lower != 'analyze' %}
|
||||
<span class="badge badge-secondary">{{ row.Op|title }}</span>
|
||||
{% endif %}
|
||||
|
||||
{% set badge_variation %}
|
||||
{%- if row.Msg_type|lower == 'error' -%}
|
||||
badge-danger
|
||||
{%- elseif row.Msg_type|lower == 'warning' -%}
|
||||
badge-warning
|
||||
{%- elseif row.Msg_type|lower == 'info' or row.Msg_type|lower == 'note' -%}
|
||||
badge-info
|
||||
{%- else -%}
|
||||
badge-secondary
|
||||
{%- endif -%}
|
||||
{% endset %}
|
||||
<span class="badge {{ badge_variation }}">{{ row.Msg_type|title }}</span>
|
||||
|
||||
{{ row.Msg_text }}
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
36
admin/phpMyAdmin/templates/table/partition/check.twig
Normal file
36
admin/phpMyAdmin/templates/table/partition/check.twig
Normal file
|
@ -0,0 +1,36 @@
|
|||
<div class="container-fluid">
|
||||
<h2>{% trans 'Check partition' %}</h2>
|
||||
|
||||
{{ message|raw }}
|
||||
|
||||
{% for name, table in rows %}
|
||||
<div class="card mb-3">
|
||||
<div class="card-header">{{ name }} ({{ partition_name }})</div>
|
||||
|
||||
<ul class="list-group list-group-flush">
|
||||
{% for row in table %}
|
||||
<li class="list-group-item">
|
||||
{% if row.Op|lower != 'check' %}
|
||||
<span class="badge badge-secondary">{{ row.Op|title }}</span>
|
||||
{% endif %}
|
||||
|
||||
{% set badge_variation %}
|
||||
{%- if row.Msg_type|lower == 'error' -%}
|
||||
badge-danger
|
||||
{%- elseif row.Msg_type|lower == 'warning' -%}
|
||||
badge-warning
|
||||
{%- elseif row.Msg_type|lower == 'info' or row.Msg_type|lower == 'note' -%}
|
||||
badge-info
|
||||
{%- else -%}
|
||||
badge-secondary
|
||||
{%- endif -%}
|
||||
{% endset %}
|
||||
<span class="badge {{ badge_variation }}">{{ row.Msg_type|title }}</span>
|
||||
|
||||
{{ row.Msg_text }}
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
5
admin/phpMyAdmin/templates/table/partition/drop.twig
Normal file
5
admin/phpMyAdmin/templates/table/partition/drop.twig
Normal file
|
@ -0,0 +1,5 @@
|
|||
<div class="container-fluid">
|
||||
<h2>{% trans 'Drop partition' %}</h2>
|
||||
|
||||
{{ message|raw }}
|
||||
</div>
|
36
admin/phpMyAdmin/templates/table/partition/optimize.twig
Normal file
36
admin/phpMyAdmin/templates/table/partition/optimize.twig
Normal file
|
@ -0,0 +1,36 @@
|
|||
<div class="container-fluid">
|
||||
<h2>{% trans 'Optimize partition' %}</h2>
|
||||
|
||||
{{ message|raw }}
|
||||
|
||||
{% for name, table in rows %}
|
||||
<div class="card mb-3">
|
||||
<div class="card-header">{{ name }} ({{ partition_name }})</div>
|
||||
|
||||
<ul class="list-group list-group-flush">
|
||||
{% for row in table %}
|
||||
<li class="list-group-item">
|
||||
{% if row.Op|lower != 'optimize' %}
|
||||
<span class="badge badge-secondary">{{ row.Op|title }}</span>
|
||||
{% endif %}
|
||||
|
||||
{% set badge_variation %}
|
||||
{%- if row.Msg_type|lower == 'error' -%}
|
||||
badge-danger
|
||||
{%- elseif row.Msg_type|lower == 'warning' -%}
|
||||
badge-warning
|
||||
{%- elseif row.Msg_type|lower == 'info' or row.Msg_type|lower == 'note' -%}
|
||||
badge-info
|
||||
{%- else -%}
|
||||
badge-secondary
|
||||
{%- endif -%}
|
||||
{% endset %}
|
||||
<span class="badge {{ badge_variation }}">{{ row.Msg_type|title }}</span>
|
||||
|
||||
{{ row.Msg_text }}
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
5
admin/phpMyAdmin/templates/table/partition/rebuild.twig
Normal file
5
admin/phpMyAdmin/templates/table/partition/rebuild.twig
Normal file
|
@ -0,0 +1,5 @@
|
|||
<div class="container-fluid">
|
||||
<h2>{% trans 'Rebuild partition' %}</h2>
|
||||
|
||||
{{ message|raw }}
|
||||
</div>
|
36
admin/phpMyAdmin/templates/table/partition/repair.twig
Normal file
36
admin/phpMyAdmin/templates/table/partition/repair.twig
Normal file
|
@ -0,0 +1,36 @@
|
|||
<div class="container-fluid">
|
||||
<h2>{% trans 'Repair partition' %}</h2>
|
||||
|
||||
{{ message|raw }}
|
||||
|
||||
{% for name, table in rows %}
|
||||
<div class="card mb-3">
|
||||
<div class="card-header">{{ name }} ({{ partition_name }})</div>
|
||||
|
||||
<ul class="list-group list-group-flush">
|
||||
{% for row in table %}
|
||||
<li class="list-group-item">
|
||||
{% if row.Op|lower != 'repair' %}
|
||||
<span class="badge badge-secondary">{{ row.Op|title }}</span>
|
||||
{% endif %}
|
||||
|
||||
{% set badge_variation %}
|
||||
{%- if row.Msg_type|lower == 'error' -%}
|
||||
badge-danger
|
||||
{%- elseif row.Msg_type|lower == 'warning' -%}
|
||||
badge-warning
|
||||
{%- elseif row.Msg_type|lower == 'info' or row.Msg_type|lower == 'note' -%}
|
||||
badge-info
|
||||
{%- else -%}
|
||||
badge-secondary
|
||||
{%- endif -%}
|
||||
{% endset %}
|
||||
<span class="badge {{ badge_variation }}">{{ row.Msg_type|title }}</span>
|
||||
|
||||
{{ row.Msg_text }}
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
5
admin/phpMyAdmin/templates/table/partition/truncate.twig
Normal file
5
admin/phpMyAdmin/templates/table/partition/truncate.twig
Normal file
|
@ -0,0 +1,5 @@
|
|||
<div class="container-fluid">
|
||||
<h2>{% trans 'Truncate partition' %}</h2>
|
||||
|
||||
{{ message|raw }}
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue