{% trans 'Analyze table' %}
{{ show_mysql_docu('ANALYZE_TABLE') }}
{{ message|raw }}
{% for name, table in rows %}
{% for row in table %}
-
{% if row.operation|lower != 'analyze' %}
{{ row.operation|title }}
{% endif %}
{% set badge_variation %}
{%- if row.type|lower == 'error' -%}
bg-danger
{%- elseif row.type|lower == 'warning' -%}
bg-warning
{%- elseif row.type|lower == 'info' or row.type|lower == 'note' -%}
bg-info
{%- else -%}
bg-secondary
{%- endif -%}
{% endset %}
{{ row.type|title }}
{{ row.text }}
{% endfor %}
{% endfor %}