{% 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}}
Manage
{% endmacro %}