{% extends "www/cohorts/base.html" %} {% block title %}Manage {{ course.title }}{% endblock %} {% block page_content %} {% if cohorts %}

Cohorts

{% for cohort in cohorts %}
{{ render_cohort(course, cohort) }}
{% endfor %}
{% else %}

Permission Denied

You don't have permission to manage this course.

{% endif %} {% endblock %} {% macro render_cohort(course, cohort) %}
{{cohort.title}}
{{cohort.begin_date}} - {{cohort.end_date}}

{% set stats = cohort.get_stats() %} {{ stats.subgroups }} Subgroups | {{ stats.mentors }} Mentors | {{ stats.students }} students | {{ stats.join_requests }} join requests

Manage
{% endmacro %}