{% extends "base.html" %} {% from "_macros.html" import collapse_card_start, collapse_card_end, paginate %} {% block content %}

Cohort Overview

{{ collapse_card_start("Cohorts", show=True, data_count=cohorts.total) }} {% for cohort in cohorts.items %} {% endfor %}
id label description # subjects
{{cohort.id}} {{cohort.label}} {{cohort.description}} {% if cohort.subjects|length > 0 %} {{cohort.subjects|length}} {% else %} {{cohort.subjects|length}} {% endif %}
{{ paginate(cohorts, 'web.web_cohorts') }} {{ collapse_card_end("Cohorts") }} {% endblock %}