{% extends "psynet_dashboard.html" %} {% block stylesheets %} {% endblock %} {% block scripts %} {{ super() }} {% endblock %} {% block body %}
This page allows you to retrieve information about a participant in the experiment, including the current status, the accumulated reward, and the link to resume the session.
| Participant ID | ||
| Assignment ID | ||
| Worker ID |
| Participant ID | {{ participant.id }} |
| Unique ID | {{ participant.unique_id }} |
| Worker ID | {{ participant.worker_id }} |
| Assignment ID | {{ participant.assignment_id }} |
| Status | {{ participant.status }} |
| Failed | {{ participant.failed }} |
| Current module | {{ participant.current_module_id }} |
| Current reward | {{ participant.calculate_reward() }} |
| Link for resuming session | {{ get_timeline_url(participant) }} |