{% if result.kind == 'error' %}
{{ result.error }}Rows modified: {{ result.affected }}
Done.
{% endif %} {% elif not result.rows %}Empty result set.
{% else %}| {% endif %} {% for col in result.columns %} | {% if in_script %} {{ col }} {% else %} {% set target = (-loop.index if loop.index == ordering else loop.index) %} {{ col }}{% if ordering %}{% if loop.index == ordering %}▼{% elif loop.index == -ordering %}▲{% endif %}{% endif %} {% endif %} | {% endfor %}|
|---|---|---|
| {% endif %} {% for value in row %} {% set fk = fk_lookup and fk_lookup.get(result.columns[loop.index0]) %} |
{% if value is none %}NULL{% elif fk %}{{ value }}{% else %}{{ value|value_filter|safe }}{% endif %}
|
{% endfor %}
{% if show_detail %} {% endif %} {% if show_edit %} {% endif %} |
Showing first {{ result.rows|length }} rows.
{% endif %} {% endif %}