{% for slot in slots %}
{{ slot.slot_number }}
{% if slot.gamer %}
{{ slot.gamer.email }}
{% else %}
empty
{% endif %}
{% if slot.status == 'EMPTY' and request.user.is_authenticated and not user_has_slot %}
{% endif %}
{% endfor %}
{% if request.user == room.owner %}