{% if exact %}
Exact match found:
{{ package_card(exact) }}
{% endif %}
{% if not exact and single_name_proposal %}
No exact match found. Were you expecting one? If so, visit the
"{{ single_name_proposal }}" project page
to have the index updated automatically.
{% elif results_count == 0 %}
No results found. Consider reducing the number of filters in your query.
{% endif %}
{% if results_count > 0 %}
Found {{ results_count }} results
{% if n_pages > 1%}. Page {{ page }} of {{ n_pages }}:{% endif %}
{% for result in results %}
{{ package_card(result) }}
{% endfor %}
{% endif %}