{% extends "otree/BaseAdmin.html" %} {% block title %} Punishment info for the session {% endblock %} {% block content %} {% if punishments %} {% for p in punishments %} {% endfor %}
Session code Round Sender id Sender contribution Receiver id Receiver contribution Punishment sent
{{ p.sender.session.code }} {{ p.sender.round_number }} {{ p.sender.id_in_group }} {{ p.sender.contribution|default_if_none:'' }} {{ p.receiver.id_in_group }} {{ p.receiver.contribution|default_if_none:'' }} {{ p.amount|default_if_none:'' }}
{% else %} No punishment info {% endif %} {% endblock %}