{% extends "base.html" %} {% block title %}{{ dashboard.title }} · sqldash{% endblock %} {% block head %} {% if studio_enabled %}{% endif %} {% if dash_page %}{% endif %} {% if dash_css %}{% endif %} {% endblock %} {% block topbar %} / {{ dashboard.title }} {% endblock %} {% block actions %}
Saved ✓ + Explore {% if studio_enabled %}{% endif %}
{% endblock %} {% block content %}

{{ dashboard.title }}

{{ dashboard.description or "" }}

{% for f in dashboard.filters %}
{% if f.type == "daterange" %}
{% elif f.type == "select" %} {% elif f.type == "date" %} {% elif f.type == "number" %} {% else %} {% endif %}
{% endfor %}
{% for w in dashboard.tiles %}
{% if w.title %}

{{ w.title }}

{% endif %}
{% if w.type != "text" %}{% endif %}
{% if w.type == "text" %}
{{ w.rendered_markdown | safe }}
{% else %}
{% endif %}
{% endfor %}
{% if studio_enabled %}{% include "_studio.html" %}{% endif %}
{% endblock %} {% block scripts %} {% if studio_enabled %}{% endif %} {% endblock %}