{% extends "learning/activity/detail.html" %} {% load i18n learning django_bootstrap_breadcrumbs %} {% block title %}{{ block.super }} − {% trans "Collaborators" %}{% endblock %} {% block breadcrumbs %} {{ block.super }} {% breadcrumb "Collaborators" "learning:activity/details/collaborators" activity.slug %} {% endblock %} {% block learning_content %} {% for object_collaborator in page_obj %} {% if user == object_collaborator.collaborator %} {% endif %} {% endfor %} {# Show a warning if the activity is private #} {% if activity.access == 'PRIVATE' %} {% endif %} {% with "activity" as object_name %} {% include "learning/_includes/collaborators/collaborators_content.html" %} {% endwith %} {% endblock %}