{% load humanize %}
{% if results %}
Query: {{ query }}
{% for instance, hits in results %}
{% ifnotequal hits -1 %}
{{ instance.get_label }} {{ hits|intcomma }}
{% else %}
{{ instance.get_label }} (Error)
{% endifnotequal %}
{% endfor %}
{% else %}
No additional content found.
{% endif %}