{% extends 'base_course.html' %} {% block subtitle %} {# I18N: Title of the course progress webpage. #} {{ gettext('Course Progress') }} {% endblock subtitle %} {% block top_content %} {% endblock %} {% block main_content %}

{# I18N: Title of the student progress page.#} {{ gettext('Student Progress') }}

{% if student %} {% include 'student_data_table.html' %} {% if can_edit_name %}

{# I18N: Shown on the student profile page. #} {{ gettext('To leave the course permanently, click on Unenroll') }}

{# I18N: Button that allows the student to unenroll from a course. #} {{ gettext('Unenroll') }}

{% else %}

{# I18N: Text shown on progress page of course to redirect student to profile page. #} {{ gettext('Manage course registration from your profile') }}

{% endif %} {% else %} {# I18N: Shown when the student profile cannot be found in the database. #}

{{ gettext('Student profile not found ...')}}

{% endif %}
{% endblock %}