{% load i18n %} {% load goal_filters %}

{{ course.identifier }} – {{ course.name }}

{% comment %} {% if course|course_completion_rate:user > 0.0 %} {% endif %} {% endcomment %}
{% if course.coursegoal_set.all|length > 0 %} {% for coursegoal in course.coursegoal_set.all %} {% if coursegoal|goals|length > 0 %}

{{ forloop.counter }}. {{ coursegoal.short_name }}

{{ coursegoal|cumulative_progress:user }} {% if coursegoal|complete_for:user %} Complete! {% else %} Not complete {% endif %}
{% if coursegoal.description %}

{{ coursegoal.description }}

{% endif %}
{% with coursegoal|goals as goal_set and forloop.counter as goal_number%} {% include 'goal_table_list.html' %} {% endwith %}
{% endif %} {% endfor %} {% else %}

{% blocktrans %}Your instructor has not yet defined any goals for this course.{% endblocktrans %}

{% endif %}