old_frames.html
912 Bytes
<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>