{% extends "layouts/charts_base.html" %} {% block chart_body %} {%- macro item(view) %}
  • {{ view.name }} - Created {{ view.date }} {% if view.created_by %} by {{ view.created_by }}{% endif %} ({{ view.modules|length }} modules)
  • {% endmacro -%}
    {% if views %}

    You have {{ views|length }} {{ 'dashboards' if views|length > 1 else 'dashboard' }}, with {{ total_modules }} charts total. {% if filter_dashboards and username %}

    Only showing your dashboards ({{ username }}) {% if global_dashboards %} and all global dashoards {% endif %}

    {% else %}

    Showing all user dashboards.

    {% endif %}
    Create new dashboard

    {% endif %}
    {% if not views %}

    No dashboard exist. Create one below to get started.

    {% endif %}

    Create dashboard

    {% include "partials/form-view.html" %} {% include "partials/edit-data-modal.html" %}
    {% endblock %}