{% extends "devilry_examiner/base.django.html" %} {% load i18n devilry_examiner_tags%} {% load url from future %} {% load django_decoupled_docs_tags %} {% load crispy_forms_tags %} {% block title %}{{ assignment.short_name }} - {{ assignment.period.get_path }}{% endblock title %} {% block body %}
{% if assignment.has_valid_grading_setup %}
{% if assignment.feedback_workflow == 'trusted-cooperative-feedback-editing' %}
{% trans "This assignment is configured with the trusted collaborative feedback editing workflow. This means that you need to work together with the other examiners to create a feedback draft. You are not allowed to publish the feedback, so when you are finished, you should notify an administrator so they know you work is ready to be published." %}
{% endif %}
{% if groups %}
{% if groups.has_previous %} {% trans "Previous" %} {% else %} {% endif %} {% if groups.has_next %} {% trans "Next" %} {% else %} {% endif %}
{% endif %} {% block content %}
{# TODO: if examinermodus == 'quick'... #} {% if examinermode == 'normal' %} {% include "devilry_examiner/include/examinermode_normal.django.html" %} {% elif examinermode == 'quick' %} {% include "devilry_examiner/include/examinermode_quick.django.html" %} {% endif %}
{% endblock content %}
{% else %}
{% trans "The grading system is not configured correctly." %}

{% trans "This means that you are not able to correct any of the submitted deliveries. Notify the course administrator which need to setup up the grading system for this assignment" %}

{% endif %} {% endblock body%}