{{ block title }}
Generation and Families
{{ endblock }} {{ block content }}
Setting up the selection board…
This takes a few seconds on first load.


Behind each of these cards is a participant of the next generation.

Please choose one of them to be your successor, {{ family_assignment }}-II, and click the card.
(Flipped over cards without a border on them have already been chosen.)

Your past generation will now choose their successors from your generation in a random order.

Behind each of these cards is a participant of your generation. Please wait while the past generation makes their choices.

Your family has completed the selection process. This stage will end once all families have finished their selections.


{% for i in card_range %}
{# Gen2: show their own family image if already assigned #} {% if generation == 2 and i == my_own_id and player.parent_id != -100 %}
{{ family_assignment }}-II
{# Gen1: show the family image on the card they already selected #} {% elif generation == 1 and i == player.child_id %}
{{ family_assignment }}-II
{% else %} {% endif %}
{% if generation == 2 and i == my_own_id %} (You) {% elif generation == 1 and i == player.child_id %} (Your successor) {% endif %}
{% endfor %}



{{ endblock }}