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

Dashboard {{ dashboard.name }}

{% if dashboard.description %}

{{ dashboard.description | escape }}

{% endif %}

Owner: {{ dashboard_user.name }}

{% if dashboard.created %}

Created: {{ dashboard.created.strftime('%Y-%m-%d %H:%M:%S') }}

{% endif %}
{% if user_options_form and not options_not_allowed %}
{{user_options_form | safe}}
{% else %}

The dashboard owner needs to start this dashboard in order to choose some options.

Please ask them to view the dashboard first and choose their options.

{% endif %}
{% endblock main %}