{% extends "base.html" %} {% block title %}{% if custom_title %}{{ custom_title }}{% else %}Write to {{ database_name }} with SQL{% endif %}{% endblock %} {% block extra_head %} {% endblock %} {% block crumbs %} {{ crumbs.nav(request=request, database=database_name) }} {% 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 %}