{% extends "layout.html" %} {% block content_main %}

Basic statistics

{% for group in analysis_types %}
{{ group.name|capitalize }} samples

{{ group.count }}

{% endfor %}
{% for group in cases %}
{{ group.status|capitalize }} Cases

{{ group.count }}

{{ (group.percent * 100)|round(1) }}%
{% endfor %}

Cases with...

{% for topic in overview %}
{{ topic.title }}

{{ topic.count }}

{{ (topic.percent * 100)|round(1) }}%
{% endfor %}
{% endblock %}