2024-08-08 18:17:43 +00:00
|
|
|
<div class="relative overflow-x-auto shadow-md sm:rounded-lg">
|
|
|
|
<table class="w-full text-sm text-left rtl:text-right text-gray-500 dark:text-gray-400">
|
|
|
|
<thead class="text-xs text-gray-700 uppercase bg-gray-50 dark:bg-gray-700 dark:text-gray-400">
|
|
|
|
<tr>
|
|
|
|
{% for column in columns %}<th scope="col" class="px-6 py-3">{{ column }}</th>{% endfor %}
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
2024-09-02 15:43:41 +00:00
|
|
|
{{ slot }}
|
2024-08-08 18:17:43 +00:00
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|