aspect_rel_missing_frames.html
914 Bytes
<strong>Brakujące schematy z relacji aspektowych:</strong>
<div>
<table id="aspect-rel-missing-frames" class="AspectRelationsTable">
{% for missing_frame in missing_frames %}
<tr>
<td class="ColumnHeader">{{ missing_frame.lemma }}</td>
{% if editable %}
<td class="ColumnHeader">Nowy aspekt</td>
<td class="ColumnHeader">Opinia</td>
{% endif %}
</tr>
{% for miss_frame in missing_frame.frames %}
<tr class="MissFrame" id="{{ miss_frame.frame.id }}">
<td class="Frame">{{ miss_frame.frame.text_rep }}</td>
{% if editable %}
<td class="Aspect">{{ miss_frame.aspect_form.as_p }}</td>
<td class="Opinion">{{ miss_frame.opinion_form.as_p }}</td>
{% endif %}
</tr>
{% endfor %}
{% endfor %}
</table>
{% if editable %}
<button id="add-aspect-rel-frames">
Dodaj schematy
</button>
{% endif %}
</div>