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

Dashboards

{# ── Left: dashboard lists ─────────────────────────────────────────── #}
{# My dashboards #}
My Dashboards
{% if my_dashboards %}
{% for dash in my_dashboards %}
{{ dash.name }} {% if dash.is_default %} Your Default {% endif %} {% if dash.is_shared %} Shared {% endif %}
Edit
Rename
{% if not dash.is_default %}
{% endif %} {% if my_dashboards | length > 1 %}
{% endif %}
{% endfor %}
{% else %}
You don't have any personal dashboards yet.
{% endif %}
{# Shared / system dashboards #} {% if shared_dashboards %}
Shared Dashboards
{% for dash in shared_dashboards %}
{{ dash.name }} {% if dash.owner_id is none %} System {% endif %} {% if dash.is_default %} Global Default {% endif %}
View
{# Admins can also edit system dashboards #} {% if user_role == 'admin' %} Edit {% endif %}
{% endfor %}
{% endif %}
{# ── Right: create new dashboard ──────────────────────────────────── #}
New Dashboard
New dashboards are private by default.
Use 🔗 to share with all users.
Use ★ to set as your default view.
{% endblock %}