{% extends "base-mobile.html" %} {% load i18n %} {% load display_functions %} {% block extra_scripts %} {% endblock extra_scripts %} {% block extra_styles %} {% endblock extra_styles %} {% block content %}

{{ cohort.course.title|title_lang:LANGUAGE_CODE }}
{{ cohort.description }}

{% if participants %}
{% trans 'Student' %}
{% trans 'Overall progress' %}
{% for p in participants.object_list %}
{{ p.user.first_name }} {{ p.user.last_name }}
{% for s in p.sections %}
{% endfor %}
{% endfor %} {% include "oppia/mobile/includes/page-nav.html" %}
{% trans 'Completed'%}
{% trans 'Partially completed'%}
{% trans 'Started'%}
{% trans 'Not started'%}
{% else %} {% blocktrans %}

There are no students in this cohort.

{% endblocktrans %} {% endif %} {% endblock %}