{# ####################### content.html ########################## This block prints the main content of the report - it should loop through the output from each module and print it in sections. #} {% for section in report.modules_output['sections'] %}
{% if section['print_section'] %}
{% if section['plot'] is not none %}
{{ section['plot'] }}
{% endif %} {{ section['content'] if section['content'] }} {{ '
' if not loop.last }}
{% endif %} {% if loop.first %}
{% endif %} {{ '
' if not loop.last }} {% endfor %}