{% extends "atlas/base.html" %} {% load crispy_forms_tags %} {% block content %}

{{ study.name }}

Slug: {{ study.slug }}

Edit Study Export CSV Export JSON
Participant URL

Append the pseudo-anonymised ID to this base URL:

{{ request.scheme }}://{{ request.get_host }}{% url 'atlas:research_participant_entry' study.slug 'PSEUDO_ID' %}
Packets
{% if arm_rows %} {% for arm, assigned_count in arm_rows %} {% endfor %}
Name Collection Assigned Mark Scheme
{{ arm.name }} {{ arm.packet.name }} {{ assigned_count }} {{ arm.marking_scheme_name|default:'Default' }} Edit
{% else %}
No packets configured. Add at least one packet before sharing participant links.
{% endif %}
Add Packet
{% csrf_token %} {{ arm_form|crispy }}
Participants ({{ participants|length }})
{% if participants %}
{% for participant in participants %} {% endfor %}
Pseudo ID Group Assigned Packet CID Assigned At
{{ participant.pseudo_id }} {{ participant.candidate_group|default:'-' }} {% if participant.assigned_arm %}{{ participant.assigned_arm.name }}{% else %}-{% endif %} {% if participant.cid_user %}{{ participant.cid_user.cid }}{% else %}-{% endif %} {{ participant.assigned_at|default:'-' }}
{% else %}
No participants yet.
{% endif %}
{% endblock %}