Server IP : 23.254.227.96 / Your IP : 216.73.216.7 Web Server : Apache/2.4.62 (Unix) OpenSSL/1.1.1k System : Linux hwsrv-1277026.hostwindsdns.com 4.18.0-477.13.1.el8_8.x86_64 #1 SMP Tue May 30 14:53:41 EDT 2023 x86_64 User : viralblo ( 1001) PHP Version : 8.1.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/local/cwpsrv/var/services/pma/templates/server/collations/ |
Upload File : |
<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>