{% extends "base.html" %} {% block title %}Write with SQL{% endblock %} {% block content %}

Write to the database with SQL

{% if tables %}

Tables: {% for table in tables %} {{ table }}{% if not loop.last %}, {% endif %} {% endfor %}

{% endif %} {% if views %}

Views: {% for view in views %} {{ view }}{% if not loop.last %}, {% endif %} {% endfor %}

{% endif %} {% endblock %}