{% if is_drop_allowed %}
|
|
{% endif %}
{{ database.name }}
|
{{ database.collation.name }}
|
{% if has_statistics %}
{% for statistic in database.statistics %}
{% if statistic.format is same as('byte') %}
{% set value = format_byte_down(statistic.raw, 3, 1) %}
{{ value[0] }}
|
{{ value[1] }} |
{% else %}
{{ format_number(statistic.raw, 0) }}
|
{% endif %}
{% endfor %}
{% endif %}
{% if database.replication.master.status %}
{% if database.replication.master.is_replicated %}
{{ get_icon('s_success', 'Replicated'|trans) }}
|
{% else %}
{{ get_icon('s_cancel', 'Not replicated'|trans) }}
|
{% endif %}
{% endif %}
{% if database.replication.slave.status %}
{% if database.replication.slave.is_replicated %}
{{ get_icon('s_success', 'Replicated'|trans) }}
|
{% else %}
{{ get_icon('s_cancel', 'Not replicated'|trans) }}
|
{% endif %}
{% endif %}
{{ get_icon('s_rights', 'Check privileges'|trans) }}
|
{% endfor %}