{% extends "layout.html" %} {% block column %} {{ super() }}

{{ _("Information") }}

Submission author(s) {% for author in submission_authors %}

{{ author }}

{% endfor %}
Task {{ task.get_name(user_manager.session_language()) }}
Submitted {{ submitted_on }}
{% endblock %} {% block navbar %} {% endblock %} {% block content %}

Coding Style Grades

Show submission and author info here?


{% for id, grade in grades.grades.items() %} {% if loop.index0 % 2 == 0 %}
{% endif %}

{% if id in config.enabled %} {% set disabled = False %} {% else %} {% set disabled = True %} {% endif %} {{ grade.name }} {% if disabled %} (disabled) {% endif %}

{{ grade.description }}


{{ grade.grade }} / 100

{% if grade.feedback %}

{% if grade.feedback %} {{ grade.feedback }} {% else %}
{% endif %}

{% if disabled %} NOTE: This category was enabled when the submission was graded, but has since been disabled or renamed. {% endif %}
{% endif %}
{% if loop.index % 2 == 0 %}
{% endif %} {% endfor %}
{% if grades %}

Mean style grade:

{{grades.get_mean(config) | int }} / 100

{% endif %}
{% endblock %}