Searching for: {{ search_query }}
{% if count_match and count_match[rtype] is defined %}
{{ count_match[rtype] }} results in {{ rtype|upper }}
{% for other_type, count in count_match.items() %}
{% if other_type != rtype and count > 0 %}
{{ count }} in {{ other_type|upper }}
{% endif %}
{% endfor %}
{% endif %}