{% extends "base/base.html" %} {% load static %} {% load humanize %} {% block title %} Rubric Info - {{ latest_rubric.rid }} {% endblock title %} {% block page_heading %} Rubric Info - {{ latest_rubric.rid }} {% endblock page_heading %} {% block main_content %} {% include "../base/alert_messages.html" with messages=messages %}
Rubric {{ latest_rubric.rid }}, revision {{ latest_rubric.revision }}.{{ latest_rubric.subrevision }} Edit
Question idx {{ latest_rubric.question_index }}
Kind {{ latest_rubric.kind }}
Created By {{ latest_rubric.user }}
Last Modified {{ latest_rubric.last_modified|naturaltime }} by {{ latest_rubric.modified_by_user }}
System Rubric {{ latest_rubric.system_rubric }}
Used {{ marking_tasks|length }} {% if marking_tasks|length == 1 %} time {% else %} times {% endif %}
Preview {{ latest_rubric_as_html|safe }}
Meta {{ latest_rubric.meta }}
Scope versions: {{ latest_rubric.versions }}
params: {{ latest_rubric.parameters }}
org tags: {{ latest_rubric.tags }}
Pedagogy Tags {% for tag in latest_rubric.pedagogy_tags.all %} {{ tag }} {% endfor %}
{% if revisions %}
Compare Revisions
{% csrf_token %} {{ diff_form.left_compare }} {{ diff_form.right_compare }}
{% endif %}
Past Revisions
{% for revision in revisions reversed %}

{{ revision.display_delta }} {{ revision.text }}
{% empty %} None found {% endfor %}

Marking tasks

{% for task in marking_tasks %} {% endfor %}
Paper Question index Version Edition Username Score More information
{{ task.paper.paper_number }} {{ task.question_index }} {{ task.question_version }} {{ task.latest_annotation.edition }} {{ task.assigned_user }} {{ task.latest_annotation.score_str }} view task

{% include "./modal_forms.html" %} {% endblock main_content %}