Files
lms/school/www/cohorts/base.html
Anand Chitipothu 102fa9c0a8 feat: added a page to list cohorts of a course
- added a page /courses/<course>/manage that lists the active cohorts
- only accessible to mentors and staff
- also added a "manage the course" button on course page for mentors/staff

Issue #271
2021-11-29 17:33:45 +05:30

35 lines
727 B
HTML

{% extends "templates/base.html" %}
{% macro render_nav(nav) %}
<div class="breadcrumb">
{% for link in nav %}
<a class="dark-links" href="{{ link.href }}">{{ link.title }}</a>
{% if not loop.last %}
<img class="ml-1 mr-1" src="/assets/school/icons/chevron-right.svg">
{% endif %}
{% endfor %}
</div>
{% endmacro %}
{% block title %}Cohorts{% endblock %}
{% block head_include %}
<meta name="description" content="Cohorts" />
<meta name="keywords" content="Cohorts" />
{% endblock %}
{% block content %}
<div class="common-page-style">
<div class='container'>
{{ render_nav(nav | default([])) }}
{% block page_content %}
Hello, world!
{% endblock %}
</div>
</div>
{% endblock %}