{% extends "global/Page.html" %}
{% load otree %}
{% block title %}Tur Sonuçları{% endblock %}
{% block content %}
Siz {{ player.id_in_group }}. Oyuncu'sunuz.
Hatırlatma: Gruptaki 1., 2. ve 3. oyuncu ortak grup hesabından -1 puan çekerek kendi aktif hesabına puan alabilirken;
gruptaki 4., 5. ve 6. oyuncu ortak grup hesabından -1, -2, -3, -4 veya -5 puan çekerek kendi aktif hesabına puan alabilir.
Tüm oyuncuların katkı yapma kapasiteleri ise aynıdır.
| Pasif hesabınızdaki puanları alabilmeniz için grup hesabında olması gereken puan: | {{ C.THRESHOLD }} Puan |
| Grubunuzun birikimli katkısı: | {% if subsession.round_number < 2 %} {{ group.total_round_cont }} {% else %} {{ cumulative_cont }} {% endif %} |
| Sizin birikimli katkınız: | {% if player.id_in_group <= 3 %} {{ player_tot_cont_low }} {% else %} {{ player_tot_cont_high }} {% endif %} |
| Birikimli ortak grup hesabı: | {{ cum_common_pool }} |
| Pasif hesabınızdaki puanları alabilmeniz için oyun bitene kadar toplanması gereken puan: | {{ remaining_threshold }} |
Grubun Tur Geçmişi
| Tur |
Grubun Tur Katkısı |
{{ for g in group_in_all_rounds }}
| {{ g.round_number }} |
{{ g.total_round_cont }} |
{{ endfor }}
|
|
| Ortalama Tur Katkısı |
{{ for x in average_round_contribution}}
| {{ x }} |
{{ endfor }}
|
|
Oyuncuların Tur Geçmişi
| Tur |
1.Oyuncunun Kararı |
{{ for f in first_player }}
| {{ f.round_number }} |
{{ f.contribution_low }} |
{{ endfor }}
|
|
| 2.Oyuncunun Kararı |
{{ for s in second_player }}
| {{ s.contribution_low }} |
{{ endfor }}
|
|
| 3.Oyuncunun Kararı |
{{ for t in third_player }}
| {{ t.contribution_low }} |
{{ endfor }}
|
|
| 4.Oyuncunun Kararı |
{{ for x in fourth_player }}
| {{ x.contribution_high }} |
{{ endfor }}
|
|
| 5.Oyuncunun Kararı |
{{ for z in fifth_player }}
| {{ z.contribution_high }} |
{{ endfor }}
|
|
| 6.Oyuncunun Kararı |
{{ for t in sixth_player }}
| {{ t.contribution_high }} |
{{ endfor }}
|
|
Oyuncuların Mevcut Durumu
|
1.Oyuncu |
2.Oyuncu |
3.Oyuncu |
4.Oyuncu |
5.Oyuncu |
6.Oyuncu |
| Ortak Hesaba Katkı |
{{ p1totcont }} |
{{ p2totcont }} |
{{ p3totcont }} |
{{ p4totcont }} |
{{ p5totcont }} |
{{ p6totcont }} |
| Mevcut Aktif Hesap |
{{ p1_curr_endow }} |
{{ p2_curr_endow }} |
{{ p3_curr_endow }} |
{{ p4_curr_endow }} |
{{ p5_curr_endow }} |
{{ p6_curr_endow }} |
{% next_button %}
{% endblock %}