{% extends "devilry_gradingsystem/admin/base.django.html" %} {% load i18n %} {% load url from future %} {% block heading %} {% trans "Grading system" %} {% endblock heading %} {% block subheading %}

{% trans "Devilry has a plugin architecture for grading systems. This makes it easy to handle vastly diverging methods of providing feedback to students." %}

{% endblock subheading %} {% block breadcrumbtail %}
  • {% trans "Grading system" %}
  • {% endblock breadcrumbtail %} {% block content %}
    {% if no_grading_system_plugin_id or not has_valid_grading_setup %}
    {% if no_grading_system_plugin_id %} {% trans "No grading system configured. This can happen if this assignment was created using Devilry 1.3.6 or older." %} {% else %} {% trans "The grading system is not configured correctly. This can happen if you or another admin has started reconfiguring the grading system, and did no complete the wizard." %} {% endif %} {% trans "Before you can provide feedback to your students, you have to reconfigure the grading system for this assignment." %}
    {% else %}

    {% trans "Current configuration" %}

    {% trans "How do you provide feedback to your students?" %} {{ pluginapi.title }}
    {% trans "How are results presented to the student?" %} {{ assignment.get_points_to_grade_mapper_display }}
    {% trans "Maximum possible number of points" %} {{ assignment.max_points }}
    {% trans "Minumum number of points required to pass" %} {{ assignment.passing_grade_min_points }}
    {% endif %}

    {% trans "Reconfigure the grading system" %}

    {% if has_staticfeedbacks %}

    {% trans "You SHOULD NOT reconfigure the grading system for this assignment. A least one student has already been given feedback. If you reconfigure the grading system, you should consider providing new feedback to all students." %}

    {% trans "Reconfigure the grading system" %}
    {% else %} {% if has_feedbackdrafts %}

    {% trans "You can reconfigure the grading system for this assignment, but be careful, at least one examiner has saved a feedback draft." %} {% trans "This means that no students have received feedback yet, but at at least one examiner has started giving feedback." %}

    {% else %}

    {% trans "You can safely reconfigure the grading system for this assignment." %} {% trans "No students have been given feedback yet, and no examiner has saved any feedback drafts." %}

    {% endif %} {% trans "Reconfigure the grading system" %} {% endif %}

    {% trans "Plugins and why you may care about them" %}

    {% trans "The system for grading students and providing feedback is very flexible in Devilry. Common for all methods of grading (passed/failed, points, A-F, ...) is that the end result is the following information:" %}

    {% trans "Points" %}
    {% trans 'Any grade in Devilry is represented as a number. This number is used for statistics and to calculate final grades. Points is not available directly to students, but some grading system plugins make them available through the "Short text" (below).' %}
    {% trans "Short text" %}
    {% trans 'A very short text that students view. Usually something like: "Approved", "B" or "7/10".' %}
    {% trans "Long text" %}
    {% trans "A longer text that students can view. This is usually the detailed feedback text, however some grading system plugins also fill this with autogenerated information based on input from examiners. What a grading system plugin can display in the long text is virtually unlimited." %}

    {% trans "Your examiners/correctors may provide this information in many ways; by specifying a numeric value, by selecting approved, by answering a set of questions, and so on. Each of these different ways of providing feedback is a plugin to the grading system in Devilry." %}

    {% blocktrans trimmed with websitelink='http://devilry.org' %} If none of the plugins shown in the first page of the Reconfigure the grading system wizard fit your needs, please contact your local devilry system administrators, or contact the developers of the Devilry open source project directly at {{ websitelink }}. {% endblocktrans %}

    {% endblock content %}