{% if total_rows > 0 %}
{% endif %}
{% for field in fields %} {% endfor %} {% for row in display_rows %} {% for cell in row %} {% endfor %} {% endfor %}
{{ field }}
{{ cell | default(value="") }}
{% if total_rows == 0 %}
Query executed successfully. No results returned.
{% elif total_rows > display_limit %}
{{ display_limit }}/{{ total_rows }} rows. Download for full dataset.
{% else %}
{{ total_rows }} row{% if total_rows != 1 %}s{% endif %}
{% endif %}