inflection_table.html
2.63 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<div class="scheme{{ color_scheme }}">
<table class="inflection-table">
{% if tables and tables|length > 1 %}
<caption>
{{ gender.symbol }}:
<span class="qualifiers">{{ gender_qualifiers|join:" " }}</span>
{{ patterns|join:" / " }}
</caption>
{% endif %}
{% for row in table %}
<tr>
{% for cell in row %}
{% if cell.type != "span" %}
{% if cell.type == "empty" %}
<td class="empty"></td>
{% else %}
{% if cell.type == "forms" %}
<td rowspan="{{ cell.rowspan }}"
colspan="{{ cell.colspan }}"
{% if cell.colspan > 1 %}class="data-c"{% endif %}>
<ul class="form-list">
{% for entry in cell.forms %}
<li>
{{ entry.form|safe }}
<span class="qualifiers">
{% for q in entry.qualifiers %}
{{ q.label }}
{% endfor %}
</span>
</li>
{% endfor %}
</ul>
</td>
{% else %}
<td rowspan="{{ cell.rowspan }}"
colspan="{{ cell.colspan }}"
{% if cell.colspan > 1 and cell.css_class == 'data' %}
class="data-c"
{% else %}class="{{ cell.css_class }}"{% endif %}>
<ul class="form-list">
{% for label in cell.label %}
<li>
{{ label|safe }}
</li>
{% endfor %}
</ul>
</td>
{% endif %}
{% endif %}
{% endif %}
{% endfor %}
</tr>
{% endfor %}
</table>
</div>