{% include 'components/header.html' %}
Tables
{% for table in response['tables'] %}
{{ table }}
{% endfor %}
Connection
{% for conn in config['connections'] %}
{{ conn }}
{% endfor %}
{{ query_info['query'] }}
Go
{% for row in response['columns'] %}
{{ row }}
{% endfor %}
{% for row in response['results'] %}
{% for col in row %}
{{ col }}
{% endfor %}
{% endfor %}