{% extends "otree/Session.html" %}
{% block content %}
{{ super() }}
Session
Session config |
{{ session.config.name }} |
Session code |
{{ session.code }} |
Participation fee |
{{ participation_fee }} |
Participants
Code |
Label |
Progress |
{% if show_finished_status %} Finished | {% endif %}
Payoff (bonus) |
Total |
{% for p in participants %}
{{ p.code }} |
{{ p.label || "" }} |
{{ p.current_page_() }} |
{% if show_finished_status %} {{ p._get_finished() ?? "1" :: "" }} | {% endif %}
{{ p.payoff_in_real_world_currency() }} |
{{ p.payoff_plus_participation_fee() }} |
{% endfor %}
Summary
Total payments |
{{ total_payments }} |
Mean payment |
{{ mean_payment }} |
{% endblock %}