{% extends "core/base.html" %} {% load static %} {% block title_text %}Gameboard{% endblock title_text %} {% block header_text %}Gameroom{% endblock header_text %} {% block content %}
{% if room.table_status == "ROLE_SELECT" and card_stack_state %}
{% if card_stack_state == "ineligible" %} {% endif %}
{% endif %}
{% for slot in room.gate_slots.all %}
{{ slot.slot_number }}
{% if slot.gamer %}@{{ slot.gamer.username|default:slot.gamer.email }}{% endif %}
{% endfor %}
{% if room.table_status == "ROLE_SELECT" %} {% for seat in assigned_seats %}
?
{{ seat.get_role_display }}
{% endfor %} {% elif room.table_status == "SIG_SELECT" and user_seat %}
{{ user_seat.get_role_display }}
{% if partner_seat %}
Partner: {{ partner_seat.get_role_display }}
{% endif %} {% endif %}
{% if not room.table_status and room.gate_status != "RENEWAL_DUE" %} {% include "apps/gameboard/_partials/_gatekeeper.html" %} {% endif %} {% include "apps/gameboard/_partials/_room_gear.html" %}
{% endblock content %} {% block scripts %} {% endblock scripts %}