index.twig 835 B

1234567891011121314151617181920212223242526272829303132
  1. <h2>
  2. {{ get_image('s_asci') }}
  3. {% trans 'Character sets and collations' %}
  4. </h2>
  5. <div id="div_mysql_charset_collations">
  6. <table class="data noclick">
  7. <thead>
  8. <tr>
  9. <th id="collationHeader">{% trans 'Collation' %}</th>
  10. <th>{% trans 'Description' %}</th>
  11. </tr>
  12. </thead>
  13. {% for charset in charsets %}
  14. <tr>
  15. <th colspan="2" class="right">
  16. {{ charset.name }}
  17. {% if charset.description is not empty %}
  18. (<em>{{ charset.description }}</em>)
  19. {% endif %}
  20. </th>
  21. </tr>
  22. {% for collation in charset.collations %}
  23. <tr{{ collation.is_default ? ' class="marked"' }}>
  24. <td>{{ collation.name }}</td>
  25. <td>{{ collation.description }}</td>
  26. </tr>
  27. {% endfor %}
  28. {% endfor %}
  29. </table>
  30. </div>