{% for p in game.players %} {% set created_techs = json_loads(p.created_techniques) %} {% set has_submitted_techs = created_techs|length == 3 and created_techs[0] %}
🐀 {{ p.name }} {% if p.id == player.id %}(You){% endif %} Rank {{ p.rank }}
Basic Records: {% if p.avatar_look and p.avatar_smell and p.first_words %} ✅ Complete {% else %} ✍️ Writing... {% endif %}
Delegated Tasks:
• Like: {% if p.other_like %} Done ({{ get_player_name(p.other_like_from_player_id) }}) {% elif p.other_like_from_player_id %} Waiting on {{ get_player_name(p.other_like_from_player_id) }} {% else %} Not delegated {% endif %}
• Hate: {% if p.other_hate %} Done ({{ get_player_name(p.other_hate_from_player_id) }}) {% elif p.other_hate_from_player_id %} Waiting on {{ get_player_name(p.other_hate_from_player_id) }} {% else %} Not delegated {% endif %}
Secret Techniques: {% if game.phase == "character_creation" %} {% if has_submitted_techs %} ✅ Submitted {% else %} ✍️ Writing... {% endif %} {% else %} {% if p.is_ready %} ✅ J/Q/K Assigned {% else %} ✍️ Assigning... {% endif %} {% endif %}
{% endfor %}