{% extends "django_sql_dashboard/base.html" %} {% load django_sql_dashboard %} {% block title %}{{ html_title }}{% endblock %} {% block content %}

{{ title }}

{% if too_long_so_use_post %}

This SQL is too long to bookmark, so sharing a link to this page will not work for these queries.

{% endif %} {% if unverified_sql_queries %}

Unverified SQL

The link you followed here included SQL that was missing its verification signatures.

If this link was provided to you by an untrusted source, they may be trying to trick you into executing queries that you do not want to execute.

Review these queries and copy and paste them once you have confirmed them:

{% for query in unverified_sql_queries %}

{% endfor %}
{% endif %}
{% csrf_token %} {% if query_results %}

Save this dashboard | Remove all queries

{% endif %} {% if parameter_values %}

Query parameters

{% for name, value in parameter_values %} {% endfor %}
{% endif %} {% for result in query_results %} {% include result.templates with result=result %} {% endfor %}

Add {% if not query_results %}a{% else %}another{% endif %} query:

{% if query_results %}

Save this dashboard

Saved dashboards get their own URL, which can be bookmarked and shared with others.

{{ save_form.non_field_errors }} {{ save_form.as_p }}

{% endif %}
{% if saved_dashboards %}

Saved dashboards

{% endif %}

Available tables

{% include "django_sql_dashboard/_script.html" %} {% endblock %}