{% extends "base.html" %} {% block pagetitle %}Annotation Results{% endblock %} {% block content %}

These are the annotation results. You can also output them to a CSV file. {% for j in alert.all %}

{% for f in j.get_all_fields %} {{f.label}}:{{f.value}}
{% endfor %} {% endfor %} {% for i in alert.all %} {% if forloop.first %} {% if i.disease %} {% endif %} {% if i.uncertainty %} {% endif %} {% if i.historical %} {% endif %} {% endif %} {% if i.disease %} {% endif %} {% if i.uncertainty %} {% endif %} {% if i.historical %} {% endif %} {% endfor %}
reportid categorydiseaseuncertaintyhistorical
{{ i.reportid }} {{ i.category }}{{ i.disease }}{{ i.uncertainty }}{{ i.historical }}
{% endblock %}