{{ room.name }}

{{ room.get_gate_status_display }}
{% if can_drop %}
{% csrf_token %}
{% else %}
{% endif %}
1
INSERT TOKEN TO PLAY PUSH TO RETURN
{% if user_can_reject %}
{% csrf_token %}
{% 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 %}
{% csrf_token %} {% if is_last_slot %} {% else %} {% endif %}
{% elif carte_active and slot.status == 'EMPTY' and slot.slot_number <= carte_slots_claimed|add:1 %}
{% csrf_token %}
{% elif carte_active and slot.status == 'FILLED' and slot.slot_number == carte_nvm_slot_number %}
{% csrf_token %}
{% endif %}
{% endfor %}
{% if room.gate_status == 'OPEN' %} {% endif %} {% if request.user == room.owner %}

Invite Friend

{% csrf_token %}
{% endif %}