{% extends "otree/admin/Session.html" %}
{% block content %}
{{ block.super }}
PDF generated: {% now "DATETIME_FORMAT" %}
Session
Session type |
{{ session.config.name }} |
Session code |
{{ session.code }} |
Time scheduled |
{{ session.time_scheduled|default_if_none:"" }} |
Experimenter name |
{{ session.experimenter_name|default_if_none:"" }} |
Participants
Participant code |
Participant label |
Participation fee |
Variable pay |
Total pay |
Note |
{% for p in participants %}
{{ p.code }} |
{{ p.label|default_if_none:"" }} |
{{ participation_fee }} |
{{ p.payoff_in_real_world_currency }} |
{{ p.payoff_plus_participation_fee }} |
|
{% endfor %}
Summary
Total payments |
{{ total_payments }} |
Mean payment |
{{ mean_payment }} |
Notes/Signature
{% endblock %}