{% extends 'myv_oahpa.html' %} {% load i18n %} {% load goal_filters %} {% get_current_language as LANGUAGE_CODE %} {% block extrajs %} {% endblock %} {% block page_class %}fixed{% endblock %} {% block imgprefix %}numra{% endblock %} {% block content %} {# Add blocktrans and trans tags #}
{% if new_profile %}

{% trans "You don't have any scores yet, go play some games!" %}

{% else %}

{% load pretty_logs %}

{% trans "Learning stats" %}

{% trans "The following scores represent your progress in the games available in Oahpa. Instructors will see your scores as shown below, but will also be able to see individual scores from every game. Good luck!" %}

{% for summary in summaries %}
{% for a in summary.game.name|filter_log %}{{ a }}{% if not forloop.last %} - {% endif %}{% endfor %}
  • {% trans "Average" %} — {{ summary.average }}
  • {% trans "Highest score" %} — {{ summary.maximum }}
  • {% trans "Lowest score" %} — {{ summary.minimum }}
  • {% trans "Number of tries" %} — {{ summary.count }}
{% endfor %}
{% endif %}
{% endblock %}