13 lines
616 B
HTML
13 lines
616 B
HTML
|
|
{% for pos in gate_positions %}
|
||
|
|
<div class="table-position" data-slot="{{ pos.slot.slot_number }}" data-role-label="{{ pos.role_label }}">
|
||
|
|
<div class="position-body">
|
||
|
|
<i class="fa-solid fa-chair"></i>
|
||
|
|
<span class="position-role-label">{{ pos.role_label }}</span>
|
||
|
|
<div class="token-tooltip">
|
||
|
|
<h4>{% if pos.slot.gamer %}@{{ pos.slot.gamer.username|default:pos.slot.gamer.email }}{% else %}Empty Seat{% endif %}</h4>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<i class="position-status-icon fa-solid {% if pos.slot.gamer %}fa-circle-check{% else %}fa-ban{% endif %}"></i>
|
||
|
|
</div>
|
||
|
|
{% endfor %}
|