26 lines
651 B
HTML
26 lines
651 B
HTML
{% if error %}
|
|
<div class="bg-red-200 text-red-800 p-3 rounded mb-4">
|
|
<strong>Error:</strong> {{ error }}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if results %}
|
|
<table class="min-w-full bg-white">
|
|
<thead>
|
|
<tr>
|
|
{% for col in columns %}
|
|
<th class="py-2 px-4 border-b">{{ col }}</th>
|
|
{% endfor %}
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for row in results %}
|
|
<tr class="text-center">
|
|
{% for col in columns %}
|
|
<td class="py-2 px-4 border-b">{{ row[col] }}</td>
|
|
{% endfor %}
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endif %} |