{% if room.table_status == "ROLE_SELECT" and card_stack_state %}
{% if card_stack_state == "ineligible" %}
{% endif %}
{% endif %}
{% if room.table_status == "SIG_SELECT" and sig_seats %}
{% for seat in sig_seats %}
{{ seat.slot_number }}
{% if seat.gamer %}@{{ seat.gamer.username|default:seat.gamer.email }}{% endif %}
{% endfor %}
{% else %}
{% for pos in gate_positions %}
{{ pos.role_label }}
{% if pos.role_label in starter_roles %}
{% else %}
{% endif %}
{% endfor %}
{% endif %}
{% if room.table_status == "SIG_SELECT" and sig_cards %}
{% for card, deck_type in sig_cards %}
{{ card.corner_rank }}
{% if card.suit_icon %}{% endif %}
{% if card.name_group %}
{{ card.name_group }}
{% endif %}
{{ card.name_title }}
{{ card.get_arcana_display }}
{{ card.corner_rank }}
{% if card.suit_icon %}{% endif %}
{% endfor %}
{% endif %}
{% if room.gate_status != "RENEWAL_DUE" and room.table_status != "SIG_SELECT" %}
{% include "apps/gameboard/_partials/_table_positions.html" %}
{% endif %}
{% if not room.table_status and room.gate_status != "RENEWAL_DUE" %}
{% include "apps/gameboard/_partials/_gatekeeper.html" %}
{% endif %}
{% if room.table_status %}
{% for i in "12345678" %}{% endfor %}
{% endif %}
{% include "apps/gameboard/_partials/_room_gear.html" %}