{% if can_drop %}
{% else %}
{% endif %}
1
INSERT TOKEN TO PLAY
PUSH TO RETURN
{% if user_can_reject %}
{% endif %}
{% for slot in slots %}
{{ slot.slot_number }}
{% if slot.gamer %}
{{ slot.gamer.email }}
{% else %}
empty
{% endif %}
{% if slot.status == 'RESERVED' and slot.gamer == request.user %}
{% elif carte_active and slot.status == 'EMPTY' and slot.slot_number == carte_next_slot_number %}
{% elif carte_active and slot.status == 'FILLED' and slot.slot_number == carte_nvm_slot_number %}
{% endif %}
{% endfor %}
{% if room.gate_status == 'OPEN' %}
{% endif %}
{% if request.user == room.owner %}
Invite Friend
{% endif %}