<div class="table-responsive">
<table class="table align-middle table-hover table-borderless shadow-sm rounded-4 overflow-hidden">
<thead class="table-light text-dark">
<tr>
<th scope="col" class="ps-4">🎓Rodzaj zajęć</th>
<th scope="col">📍 Miasto</th>
<th scope="col">🏫 Nr szkoły</th>
<th scope="col">📅 Dzień</th>
<th scope="col">⏰ Godzina</th>
</tr>
</thead>
<tbody class="bg-white">
{% for group in groups %}
<tr class="border-top">
<td class="ps-4">
<span class="fw-semibold">{{ group.course }}</span>
</td>
<td>{{ group.city }}</td>
<td>{{ group.school }}</td>
<td>{{ group.day }}</td>
<td>{{ group.hour }}</td>
</tr>
{% else %}
<tr>
<td colspan="5" class="text-center py-4">
<em>Wkrótce wprowadzimy listę aktualnie współpracujących placówek</em>
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>