{# This file is part of INGInious. See the LICENSE and the COPYRIGHTS files for #} {# more information about the licensing of this file. #} {% extends "layout.html" %} {% set user_realname= user_manager.get_user_realname(username) %} {% block title %} {{ user_realname }} - {{ course.get_name(user_manager.session_language()) }}{% endblock %} {% block column %} {{ template_helper.call('course_admin_menu',course=course,current='students') | safe }} {% endblock %} {% block navbar %} {% endblock %} {% block content %}

{{ _("Statistics for student {realname} ({username})").format(realname=user_realname, username=username) }}

{% for taskid, task in data.items() %} {% endfor %}
{{_("task")}} {{_("status")}} {{_("# submissions")}}
{% if not task["visible"] %} {% endif %} {{ task["name"] }} {% if task["status"] == "notviewed" %} {{ _("Not viewed") }} {% elif task["status"] == "notattempted" %} {{_("Not attempted (viewed)")}} {% elif task["status"] == "succeeded" %} {{_("Succeeded")}} ({{task["grade"]}}%) {% else %} {{_("Failed")}} ({{task["grade"]}}%) {% endif %} {{ task["tried"] }}
{% endblock %}