Mineplex/.FILES USED TO GET TO WHERE WE ARE PRESENTLY/xampp/phpMyAdmin/templates/server/privileges/initials_row.twig
Daniel Waggner 76a7ae65df PUUUUUSH
2023-05-17 14:44:01 -07:00

25 lines
896 B
Twig

<table class="pma-table" id="initials_table" cellspacing="5">
<tr>
{% for tmp_initial, initial_was_found in array_initials %}
{% if tmp_initial is not same as(null) %}
{% if initial_was_found %}
<td>
<a class="ajax
{{- initial is defined and initial is same as(tmp_initial) ? ' active' -}}
" href="{{ url('/server/privileges', {'initial': tmp_initial}) }}">
{{- tmp_initial|raw -}}
</a>
</td>
{% else %}
<td>{{ tmp_initial|raw }}</td>
{% endif %}
{% endif %}
{% endfor %}
<td>
<a href="{{ url('/server/privileges', {'showall': 1}) }}" class="nowrap">
{% trans 'Show all' %}
</a>
</td>
</tr>
</table>