{% extends "corpus/base.html" %} {% load static %} {% block content_title %}{{subtitle}}{% endblock %} {% block extrastyle %} {% endblock %} {% block extra_js %} {% endblock %} {% block label_mode_switch %} Label by documents {% endblock %} {% block navigation %}
Previous segment labeledNext segment labeled
Last segment labeled by youNext segment you labeled » Next segment to label {% endblock %} {% block inner_content %}
{% include "corpus/segment_render.html" %}

Complete:
{% csrf_token %} {{ formset.management_form }} {% for question_form in formset %} {% with obj=question_form.instance %}
{% with left_eo=obj.evidence_candidate.left_entity_occurrence %} {{ left_eo.alias }} {% endwith %} {{ relation.name }} {% with right_eo=obj.evidence_candidate.right_entity_occurrence %} {{ right_eo.alias }} {% endwith %} ?
{{ question_form.as_p }}
{% for label in obj.all_labels %} {% if label.label %}
Labeled as {{label.label}} by {{label.judge|default:"unknown"}} on {{labelobj.modification_date}}
{% endif %} {% endfor %}
{% endwith %} {% endfor %}
{% endblock %}