{% 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 }}
{% if cohort.begin_date %}
{{ frappe.utils.format_date(cohort.begin_date, "medium") }} - {{ frappe.utils.format_date(cohort.end_date, "medium") }}
{% endif %}

{{ frappe.db.count("Cohort Subgroup", {"cohort": cohort.name}) }} {{ _("Subgroups") }} | {{ frappe.db.count("Cohort Mentor", {"cohort": cohort.name}) }} {{ _("Mentors") }} | {{ frappe.db.count("LMS Enrollment", {"cohort": cohort.name}) }} {{ _("Students") }} | {{ frappe.db.count("Cohort Join Request", {"cohort": cohort.name}) }} {{ _("Join Requests") }}

{% endmacro %}