{% block predictions %} {% if predictions %}

Predictions:

{% for row in predictions %} {% for item in row %} {% endfor %} {% endfor %}
{{ item.outcome | safe }}

{{ item.name }}

{{ item.figure | safe }}

prediction: {{ item.prediction }}
truth: {{ item.truth }}
{% if item.explanation %}
{{ item.explanation | safe }}
{% endif %}
{% endif %} {% endblock %}