{# Job result table — HTMX partial #} {% if error %}
{{ error }}
{% elif columns %}
{% for col in columns %} {% endfor %} {% for row in rows[:50] %} {% for cell in row %} {% endfor %} {% endfor %}
{{ col.name }} {{ col.type }}
{% if cell is none %}NULL{% else %}{{ cell }}{% endif %}
{% if truncated %}
Showing first 1000 of {{ row_count }} rows
{% endif %} {% else %}
No result data
{% endif %}