{% extends "workspace_layout.html" %} {% block content %}

{{ table }}

{{ schema }}
schema
{% if error %}
{% else %}
{% for col in columns %} {% endfor %} {% for row in rows %} {% for col in columns %} {% endfor %} {% endfor %} {% if rows|length == 0 %} {% endif %}
{{ col }}
{% if row[col] is defined %} {{ row[col] }} {% else %} null {% endif %}

No data available

This table is currently empty.

Showing {{ rows|length }} rows {% if rows|length == 100 %}(limit reached){% endif %}
{% endif %}
{% endblock %}