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
This commit is contained in:
Anand Chitipothu
2021-11-29 17:33:45 +05:30
parent 7cd57cadb2
commit 102fa9c0a8
7 changed files with 141 additions and 0 deletions

View File

@@ -70,6 +70,13 @@
<img class="ml-2" src="/assets/school/images/play.png" />
</div>
{% endif %}
{% if course.is_cohort_staff(frappe.session.user) %}
<a class="button wide-button" style="position: absolute; right: 0;"
href="/courses/{{course.name}}/manage">
Manage the course
</a>
{% endif %}
</div>
</div>
</div>