{% extends "layouts/base.html" %} {% block custom_css %} {{ super() }} {% for label, chart_group in charts_config.items() %} {% if chart_group['enabled'] and chart_group['css_url'] %} {% endif %} {% endfor %} {% endblock %} {% block body %} {{ super() }}
{% block chart_body %}{% endblock %}
{% endblock %} {% block custom_scripts %} {{ super() }} {% for label, chart_group in charts_config.items() %} {% if chart_group['enabled'] and chart_group['js_url'] %} {% endif %} {% endfor %} {% endblock %}