|
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
|
<div class="old-frame-table-container">
{% if reflexed_frames %}
<strong>{{ lemma_entry }} się:</strong>
<table class='InflectionTable'>
<tr class="old_frames_row">
<td class='ColumnHeader'>Właściwość:</td>
<td class='ColumnHeader'>Schemat:</td>
</tr>
{% for old_frame in reflexed_frames %}
<tr class="old_frames_row">
<td>{{old_frame.property.name}}</td>
<td>{{old_frame}}</td>
</tr>
{% endfor %}
</table>
{% endif %}
{% if nreflexed_frames %}
<strong>{{ lemma_entry }}:</strong>
<table class='InflectionTable'>
<tr class="old_frames_row">
<td class='ColumnHeader'>Właściwość:</td>
<td class='ColumnHeader'>Schemat:</td>
</tr>
{% for old_frame in nreflexed_frames %}
<tr class="old_frames_row">
<td>{{old_frame.property.name}}</td>
<td>{{old_frame}}</td>
</tr>
{% endfor %}
</table>
{% endif %}
</div>
|