{% extends 'exp/base.html' %} {% load bootstrap3 %} {% load exp_extras %} {% block title %}Participants{% endblock %} {% block flash %} {% bootstrap_messages %} {% endblock %} {% block content %}

Participants

Nickname
User ID
Last Active

{% for user in object_list %}
User ID: {{ user.id }}
Last Active: {{ user.last_login|date:"n/d/Y"|default:"N/A" }}
{% empty %}

No participants found!

{% endfor %}
{% include 'studies/_paginator.html' with items=object_list request=request %}
{% endblock %}