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

Write to the database with SQL

{% for parameter in parameters %} {% if parameter.type == "text" %} {% elif parameter.type == "textarea" %} {% endif %} {% endfor %}
{% 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 %}