{% extends 'univ_oahpa.html' %} {% load i18n %} {% load goal_filters %} {% load cache %} {% load staticfiles %} {% block extrajs %} {% endblock %} {% get_current_language as LANGUAGE_CODE %} {% block imgprefix %}numra{% endblock %} {% block page_class %}fixed{% endblock %} {% block content %}


{{ goal.short_name }}

{% cache 100 user_course_goals_sparkline student.user.username goal.id %} {{ spark_data }} {% endcache %}
{% cache 60 user_course_goals student.user.username goal.id %} {% for goal in goal_instances %} {% if goal.evaluation %} {% endif %} {% endfor %}
{% trans "success" %} {% trans "total questions answered" %} {% trans "correct" %} {% trans "first try / later tries" %} {% trans "rounds" %} {% trans "last attempt" %}
{% if goal.is_complete %} {% else %} {% endif %} {{ goal.total_answered }} {{ goal.evaluation.progress_pretty }} {{ goal.evaluation.correct_minus_first }},{{ goal.evaluation.correct_first_try }} {{ goal.evaluation.correct }} / {{ goal.evaluation.correct_later_tries }} {{ goal.evaluation.rounds }} {{ goal.last_attempt|date:"DATE_FORMAT" }}
      {% trans "later tries" %}
  {% trans "first try" %}
   
{% endcache %}
{% trans "Completion criteria" %}
 
{% trans "Correct threshold:" %}
{{ goal.threshold }}%
{% trans "Minimum sets: " %}
{{ goal.minimum_sets_attempted }}
{% if goal.correct_first_try %}
{% trans "Correct on first try" %}
 
{% endif %}
{% for name, parameter in goal.summary %}
{{ name }}
{{ parameter }}
{% endfor %}
{% cache 60 user_words_to_work_on student.user.username goal.id %} {% if 'leksa' in goal.main_type %} {% include 'words_to_work_on_leksa.html' %} {% endif %} {% if 'numra' in goal.main_type %} {% include 'words_to_work_on_numra.html' %} {% endif %} {% if 'morfa' in goal.main_type %} {% include 'words_to_work_on_morfa.html' %} {% endif %} {% endcache %}
{% endblock %}