{# ####################### general_stats.html ########################## This block generates the General Statistics table at the top of the report. #} {% if report.general_stats_html['headers']|length > 0 %}

General Statistics   Showing {{ report.general_stats_html['rows'].keys() | length }} rows.

{%- for k, h in report.general_stats_html['headers'].items() %} {{ h }} {%- endfor -%} {% for sn, r in report.general_stats_html['rows']|dictsort %} {%- for k, h in report.general_stats_html['headers'].items() %} {{ r[k] if r[k] else '' }} {%- endfor -%} {%- endfor %}
Sample Name
{{ sn }}
{% endif %}