inflection_tables.html
872 Bytes
<span class="entry-article scheme{{ lexeme.part_of_speech.color_scheme }}">
<h1>
{{ lexeme.entry }}
{% if lexeme.pronunciation %}
<span class="pronunciation">[{{ lexeme.pronunciation|safe }}]</span>
{% endif %}
{% if lexeme.gloss %}
<span class="gloss">‘{{ lexeme.gloss|safe }}‘</span>
{% endif %}
</h1>
<p>
{{ lexeme.part_of_speech.full_name }}
{# kwalifikatory leksemu #}
{# nota #}
{# SJPDor #}
</p>
<p>
{{ lexeme.lip_data.inflection_characteristics }}
{% if tables|length == 1 %}
{{ lexeme.lip_data.patterns }}
{% endif %}
</p>
<p class="separator"></p>
<div class="inflection-tables">
{% for inflection_characteristic, table in tables %}
<div class="inflection-table-container">
{% include "inflection_table.html" %}
</div>
{% endfor %}
</div>
</span>