{% if can_drop %}
{% else %}
{% endif %}
1
INSERT TOKEN TO PLAY
PUSH TO REJECT
{% 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 %}
{% endif %}
{% endfor %}
{% if request.user == room.owner %}
Invite Friend
{% endif %}