{% if action == 'guess' %}
Zadaj tip:
{% include "_guess_form.html" %}
{% endif %}
{% if status['active_stash'] %}
Aktuálna kôpka:
{% for player in range(status['active_stash']['first_player'], status['active_stash']['first_player'] + 4) %}
| {{ players[player % 4] }} |
{% endfor %}
{% for player in range(status['active_stash']['first_player'], status['active_stash']['first_player'] + 4) %}
{% if status['active_stash']['cards'][player % 4] %}
{% endif %}
|
{% endfor %}
{% endif %}
{% if action != 'play' %}
Moje karty:
{% for card in status['player_cards'] %}
|
{% endfor %}
{% else %}
{{ form.card.label }}:
{% endif %}
{% endif %}