{% load pygments_highlights %} {% load datetime_formatting %} {% load diff_result %} {% for result in results %} {% with index=forloop.counter %}

Result #{{ index }}

{% for field, value in result.items %} {% endfor %}
Field Value
{{ field }} {% if field == "diff" %} {{ value | diff_result | format_data | safe }} {% else %} {{ value | format_data | safe }} {% endif %}
{% if not forloop.last %}


{% endif %} {% endwith %} {% endfor %}