{% extends "base.html" %} {% block content %}
Estimating ~{{report.estimate_hour}} analysis per hour, {{report.estimate_day}} per day.

{{report.total_tasks}}

Total tasks

{{report.total_samples}}

Total samples
{% if report.top_detections %} {% for block in report.top_detections %} {% if forloop.counter|divisibleby:"5" %} {% elif forloop.last %} {% endif %} {% endfor %}
{{block.total}}: {{block.family}}
{% endif %}
{% for state, count in report.states_count.items %} {% endfor %}
State Count
{{state}} {{count}}
{% endblock %}