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

{% trans "List of Participants" %}

{% for participation in participations %} {% endfor %}
{% trans "User ID" %} {% trans "Last Name" %} {% trans "First Name" %} {% trans "Role" %}
{{ participation.user.username }} {{ participation.user.last_name }} {{ participation.user.first_name }} {{ participation.get_role_desc }}
{% endblock %}