{% 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' %} {% if dfilter.options | length > 100 %} {% for option in dfilter.options %} {% endfor %} {% else %} {% endif %} {% else %} {% endif %}
{% endfor %}
{% endif %}
{% for chart_slug, chart in dashboard.charts.items() %}
{% if chart.library != 'markdown' %}

{% if not embed %} {% endif%} {{ chart.title }} {% if not embed %} {% endif%} ⚠️

{% endif %}
{% if chart.library == 'markdown' %} {{ render_markdown( chart.display, extensions=["extra"], extra_tags=["table", "thead", "tr", "th", "td", "tbody"] ) }} {% endif %}
{% endfor %}
{% endblock %}