{% extends "layouts/charts_base.html" %} {%- macro chart(module=None) %} {% if module %} {% set dims = module|get_dims %} {% endif %} {% endmacro -%} {% block chart_body %}

Back {{ view.name }} {% include "partials/dashboard-options.html" %}

{% if not view.modules|length %}

It looks like this dashboard has no modules - add some below.

{% endif %} {% include "partials/form-view.html" %}
{% include "partials/form-json.html" %}
{% for module in view.modules %} {{ chart(module=module) }} {% endfor %}
{% include "partials/edit-data-modal.html" %} {% endblock %}