blob: bb9dfb3d122146d22870372fc106e5a447408a97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<h2>
{{ get_image('s_asci') }}
{% trans 'Character sets and collations' %}
</h2>
<div id="div_mysql_charset_collations">
<table class="data noclick">
<thead>
<tr>
<th id="collationHeader">{% trans 'Collation' %}</th>
<th>{% trans 'Description' %}</th>
</tr>
</thead>
{% for charset in charsets %}
<tr>
<th colspan="2" class="right">
{{ 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="marked"' }}>
<td>{{ collation.name }}</td>
<td>{{ collation.description }}</td>
</tr>
{% endfor %}
{% endfor %}
</table>
</div>
|