{% extends "otree/admin/Session.html" %}
{% block content %}
{{ block.super }}
    
    PDF generated: {% now "DATETIME_FORMAT" %}
    
    Session
    
        
            | Session type | {{ session.session_type.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:"" }} | {{ fixed_pay }} | {{ p.payoff_from_subsessions_in_real_world_currency }} | {{ p.total_pay }} |  | 
        {% endfor %}
    
    Summary
    
        
            | Total payments | {{ total_payments }} | 
        
            | Mean payment | {{ mean_payment }} | 
    
    Notes/Signature
    
        
        
        
    
 
{% endblock %}