{% extends 'oahpa.html' %} {% load i18n %} {% get_current_language as LANGUAGE_CODE %} {% block page_class %}fixed{% endblock %} {# {% block page_header %} #} {# OAHPA! #} {# #} {# {% endblock %} #} {% block content %} {# Add blocktrans and trans tags #}

{% trans 'Welcome, ' %}{{ user.first_name }}!

{% if is_student %} {% if new_profile %}

You don't have any scores yet, go play some games!

{% else %}

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!

Course progress

{% for summary in summaries %}
{{ summary.game }}
  • {% trans "Average" %} — {{ summary.average }}
  • {% trans "Highest score" %} — {{ summary.maximum }}
  • {% trans "Lowest score" %} — {{ summary.minimum }}
  • {% trans "Number of tries" %} — {{ summary.count }}
{% endfor %}

Enrolled in...

{% endif %} {% else %}

You are a course instructor.

View students' grades

{% endif %}
{% endblock %}