{% 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 %}
reportid | category | {% if i.disease %}disease | {% endif %} {% if i.uncertainty %}uncertainty | {% endif %} {% if i.historical %}historical | {% endif %}
---|---|---|---|---|
{{ i.reportid }} | {{ i.category }} | {% if i.disease %}{{ i.disease }} | {% endif %} {% if i.uncertainty %}{{ i.uncertainty }} | {% endif %} {% if i.historical %}{{ i.historical }} | {% endif %}