{% extends "base.html" %} {% block title %}{{ dashboard.title }}{% endblock %} {% block extra_head %} {{ super() }} {% endblock %} {% block crumbs %} {% if not embed %}

home / dashboards

{% endif %} {% endblock %} {% block body_class %}index{% endblock %} {% block content %}

{{ dashboard.description }}

{% if settings.allow_fullscreen %}
{% endif %}
{% if dashboard.filters %}
{% for key, dfilter in dashboard.filters.items() %} {% set dfilter_type = dfilter.type if dfilter.type in ['text', 'date', 'number', 'select'] else 'text' %}
{{ dfilter.name }} {% if dfilter_type == 'select' %} {% else %} {% endif %}
{% endfor %}
{% endif %}
{% for chart_slug, chart in dashboard.charts.items() %}
{% if chart.library != 'markdown' %} {% endif %}
{% if chart.library == 'markdown' %} {{ render_markdown(chart.display) }} {% endif %}
{% endfor %}
{% endblock %}