{% 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 %}
| Username | Last Name | First Name | Status | {% for participation in participations %}
|---|---|---|---|
| {{ participation.user.username }} | {{ participation.user.last_name }} | {{ participation.user.first_name }} | {{ participation.role }} |