HEX
Server: Apache/2.4.34 (Red Hat) OpenSSL/1.0.2k-fips
System: Linux WORDPRESS 3.10.0-1160.118.1.el7.x86_64 #1 SMP Thu Apr 4 03:33:23 EDT 2024 x86_64
User: digital (1020)
PHP: 7.2.24
Disabled: NONE
Upload Files
File: /datos/www/expodubai/phpMyAdmin/templates/server/collations/index.twig
<div class=container-fluid>
<div class="row">
  <h2>
    {{ get_image('s_asci') }}
    {% trans 'Character sets and collations' %}
  </h2>
</div>

<div class="table-responsive">
  <table class="table table-light table-striped table-hover table-sm w-auto">
    <thead class="thead-light">
      <tr>
        <th scope="col">{% trans 'Collation' %}</th>
        <th scope="col">{% trans 'Description' %}</th>
      </tr>
    </thead>

    {% for charset in charsets %}
      <tr>
        <th colspan="2" class="table-primary">
          {{ charset.name }}
          {% if charset.description is not empty %}
            (<em>{{ charset.description }}</em>)
          {% endif %}
        </th>
      </tr>
      {% for collation in charset.collations %}
        <tr{{ collation.is_default ? ' class="table-info"' }}>
          <td>
            {{ collation.name }}
            {% if collation.is_default %}
              <span class="sr-only">{% trans '(default)' %}</span>
            {% endif %}
          </td>
          <td>{{ collation.description }}</td>
        </tr>
      {% endfor %}
    {% endfor %}
  </table>
</div>
</div>