{% extends "global/Page.html" %} {% load otree static %} {% block title %} 役割と個人情報 {% endblock %} {% block content %}

あなたの役割と個人情報は
{% if player.roll_base == 'seller' %} 売り手:{{ player.id_in_group }}
1本目の仕入れ値:{{ player.seller_first_lowest_price }}
2本目の仕入れ値:{{ player.seller_second_lowest_price }}
です. {% elif player.roll_base == 'buyer' %} 買い手:{{ player.id_in_group }}
1本目の最高価格:{{ player.buyer_first_highest_price }}
2本目の最高価格:{{ player.buyer_second_highest_price }}
です. {% endif %}

{% endblock %}