39 lines
1.0 KiB
HTML
39 lines
1.0 KiB
HTML
{% extends "www/cohorts/base.html" %}
|
|
{% block title %}Manage {{ course.title }}{% endblock %}
|
|
|
|
{% block page_content %}
|
|
{% if cohorts %}
|
|
<h2>Cohorts</h2>
|
|
<div class="row">
|
|
{% for cohort in cohorts %}
|
|
<div class="col-md-6">
|
|
{{ render_cohort(course, cohort) }}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% else %}
|
|
<h2>Permission Denied</h2>
|
|
<p>You don't have permission to manage this course.</p>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% macro render_cohort(course, cohort) %}
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<h5 class="card-title">{{cohort.title}}</h5>
|
|
<h6 class="card-subtitle mb-2 text-muted">{{cohort.begin_date}} - {{cohort.end_date}}</h6>
|
|
<p>
|
|
{% set stats = cohort.get_stats() %}
|
|
|
|
{{ stats.subgroups }} Subgroups
|
|
| {{ stats.mentors }} Mentors
|
|
| {{ stats.students }} students
|
|
| {{ stats.join_requests }} join requests
|
|
</p>
|
|
|
|
<a href="/courses/{{course.name}}/cohorts/{{cohort.slug}}" class="card-link">Manage</a>
|
|
</div>
|
|
</div>
|
|
|
|
{% endmacro %}
|