{% extends "course/course-base.html" %} {% load static %} {% block title %} List of Participants - Courseflow {% endblock %} {% block header_extra %} {# the min.js version contains all dependencies #} {% endblock %} {% block content %}

List of Participants

{% for participation in participations %} {% endfor %}
Username Last Name First Name Status
{{ participation.user.username }} {{ participation.user.last_name }} {{ participation.user.first_name }} {{ participation.role }}
{% endblock %}