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

SQL Runner

{% if error %}
{{ error }}
{% endif %} {% if result %}
{% for col in result.columns %} {% endfor %} {% for row in result.rows %} {% for col in result.columns %} {% endfor %} {% endfor %}
{{ col }}
{{ row[col] }}
{% endif %}
{% endblock %}