{% extends "base.html" %} {% block title %}Write with SQL{% endblock %} {% block extra_head %} {% endblock %} {% block content %}
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 %}