{% extends "base.html" %} {% block title %}Dashboards — TraceBi{% endblock %} {% block content %}
Dashboards

Live interactive dashboards with associative filtering.

{% if dashboards %}
{% for d in dashboards %}
{{ d.name }}
{% if d.description %}
{{ d.description }}
{% endif %}
▶ Open Dashboard
{% endfor %}
{% else %}

No dashboards registered yet.

Use registry.add_dashboard(name, DashboardServer(...)) in your app module.

{% endif %} {% endblock %}