{% load url from future %} {% load service_tags %} {% regroup analysis.results by subtype as result_list %} {% for result_subtype in result_list %}
Result | {% for key, value in result.items %} {% if key != 'subtype' and key != 'result' %}{{ key|capfirst }} | {% endif %} {% endfor %}|||
---|---|---|---|---|
{% if result.result %} {{result.result}} {% endif %} | {% for key, value in result.items %} {% if key != 'subtype' and key != 'result' %} {% if key == 'md5' %}{% if value %} {{value}} {% endif %} | {% else %}
{# If this is a list, make a subtable #}
{% if value|needs_subtable %}
|
{% endif %}
{% endif %}
{% endfor %}
This service is still running.
{% else %}This service produced no results.
{% endif %} {% endfor %}