|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{% load dictionary_extras %}
<div class="scheme{{ color_scheme }}">
<table class="inflection-table">
<tr>
<td class="header">→</td>
<td>
{{ lexeme|attribute:"rozwinięcie" }}
{% if lexeme.borrowing_source %}
<em>{{ lexeme.borrowing_source }}</em>
‘{{ lexeme|attribute:"tłumaczenie" }}’
{% endif %}
</td>
</tr>
</table>
</div>
|