{% extends 'base/layout.html' %} {% load static %} {% block title %}SQL Console{% endblock %} {% block head %} {% endblock %} {% block content %}
{% for kw in "SELECT,FROM,WHERE,JOIN,ON,AND,OR,IN,GROUP BY,ORDER BY,LIMIT,DISTINCT,AS,COUNT(*),IS NULL,IS NOT NULL"|split:"," %} {% endfor %}
{% for table_name, columns in raw_schema.items %}
{{ table_name }}
    {% for col_name, col_type in columns %}
  • {{ col_name }}{{ col_type }}
  • {% endfor %}
{% endfor %}
{% for table_name, columns in abstract_schema.items %}
{{ table_name }}
    {% for col_name, col_type in columns %}
  • {{ col_name }}{{ col_type }}
  • {% endfor %}
{% endfor %}
{% csrf_token %}
{% if error %}
{{ error }}
{% endif %} {% if write_result %}
{{ write_result }}
{% endif %} {% if needs_confirm %} {% endif %} {% if columns %}
{% for col in columns %} {% endfor %} {% for row in rows %} {% for cell in row %} {% endfor %} {% endfor %}
{{ col }}
{{ cell }}
{{ row_count }} row{{ row_count|pluralize }}
{% endif %} {% endblock %}