<iclass="icon fa fa-caret-right"aria-hidden="true"></i>
<span>{% trans "Example-Based Assessment" %}</span>
</h2>
<divclass="ui-toggle-visibility__content">
<tableclass="staff-info__status__table"summary="{% trans "ExampleBasedAssessment"%}">
<thead>
<tr>
<thabbr="Criterion"scope="col">{% trans "Criterion" %}</th>
<thabbr="Selected Option"scope="col">{% trans "Selected Option" %}</th>
<thabbr="Points"scope="col">{% trans "Points" %}</th>
<thabbr="Points Possible"scope="col">{% trans "Points Possible" %}</th>
</tr>
</thead>
{% trans "Example-Based Assessment" as translated_title %}
{% include "openassessmentblock/staff_area/oa_student_info_assessment_detail.html" with class_type="example_based" assessments=example_based_assessment %}
{% endif %}
<tbody>
{% for criterion in rubric_criteria %}
{% for part in example_based_assessment.parts %}
{% if part.option.criterion.name == criterion.name %}
<tr>
<tdclass="label">{{ criterion.label }}</td>
<tdclass="value">{{ part.option.label }}</td>
<tdclass="value">{{ part.option.points }}</td>
<tdclass="value">{{ criterion.total_value }}</td>
</tr>
{% endif %}
{% endfor %}
{% endfor %}
</tbody>
</table>
</div>
</div>
</div>
{% if staff_assessment %}
{% trans "Staff Assessment for This Learner" as translated_title %}
{% include "openassessmentblock/staff_area/oa_student_info_assessment_detail.html" with class_type="staff" assessments=staff_assessment %}