1 %} class="align-middle" rowspan="{{ privileges_amount }}"{% endif %}>
|
1 %} class="align-middle" rowspan="{{ privileges_amount }}"{% endif %}>
{% if privilege.user is empty %}
{% trans 'Any' %}
{% else %}
{{ privilege.user }}
{% endif %}
|
1 %} class="align-middle" rowspan="{{ privileges_amount }}"{% endif %}>
{{ privilege.host }}
|
{% for priv in privilege.privileges %}
{% if priv.type == 'g' %}
{% trans 'global' %}
{% elseif priv.type == 'd' %}
{% if priv.database == db|replace({'_': '\\_', '%': '\\%'}) %}
{% trans 'database-specific' %}
{% else %}
{% trans 'wildcard' %}: {{ priv.database }}
{% endif %}
{% elseif priv.type == 't' %}
{% trans 'table-specific' %}
{% elseif priv.type == 'r' %}
{% trans 'routine' %}
{% endif %}
|
{% if priv.type == 'r' %}
{{ priv.routine }}
({{ priv.privileges|join(', ')|upper }})
{% else %}
{{ priv.privileges|join(', ')|raw }}
{% endif %}
|
{{ priv.has_grant ? 'Yes'|trans : 'No'|trans }}
|
{% if is_grantuser %}
{{ get_icon('b_usredit', 'Edit privileges'|trans) }}
{% endif %}
|
{{ get_icon('b_tblexport', 'Export'|trans) }}
|
{% if privileges_amount > 1 %}