{% extends "page.html" %} {% block main %}

Your own dashboards

You have not created any dashboards yet

{% if my_dashboards %} {% for dash in my_dashboards %} {# name #} {# url #} {# actions #} {% endfor %}
Dashboard name View URL Actions
{{ dash.name | escape }} hub/dashboards/{{ dash.urlname }} edit delete
{% endif %}

Dashboards from others

{% for username, dashlist in visitor_dashboard_groups.items() %}

{{ username | escape }}

{% endfor %} {% if not visitor_dashboard_groups %}

No-one has shared any dashboards with you

{% endif %}
{% endblock main %} {% block script %} {{ super () }} {% endblock script %}