{% extends "django_sql_dashboard/base.html" %} {% load django_sql_dashboard %} {% block title %}{{ html_title }}{% endblock %} {% block extra_head %} {{ block.super }} {% if dashboard.view_policy == "unlisted" %} {% endif %} {% endblock %} {% block content %}

Dashboard index

{% if dashboard.title %}{{ dashboard.title }}{% else %}{{ dashboard.slug }}{% endif %}

{% if dashboard.description %}

{{ dashboard.description }}

{% endif %}

{% if user_owns_dashboard %} Owned by you, {% else %} Owned by {{ dashboard.owned_by }}, {% endif %} visibility: {{ dashboard.view_summary }} {% if user_can_edit_dashboard %} - edit {% 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 %}
{% include "django_sql_dashboard/_script.html" %} {% endblock %}