{% extends "layout/layout_container.html" %} {% import 'plot_widget_macros.html' as plot_widget_macros %} {% block stylesheets %} {{ super() }} {% endblock stylesheets %} {% block layout %}
{% for i in range(6) %} {% if dashboard.plots[i] is defined%} {{ plot_widget_macros.plot_widget(dashboard_index, i, dashboard.plots[i]) }} {% else %} {{ plot_widget_macros.plot_empty_widget() }} {% endif %} {% endfor %}
{% endblock layout %} {% block layout_javascripts %} {% endblock layout_javascripts %}