{# #######################
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 m in report.modules_output %}
{{ m.name }}
{{ m.intro if m.intro }}
{% for s in m.sections %}
{{ s['name'] }}
{{ s['content'] if s['content'] }}
{{ '' if not loop.last }}