{% extends "page.html" %} {% block page_banner %} {% endblock page_banner %} {% block banner_split %} {% endblock banner_split %} {% macro package_card(content) -%}
{{ content.canonical_name }}    {{ content.release_version or '' }} {{ content.release_date.strftime('%b %d, %Y') if content.release_date else '' }}

{{ content.summary or '' }}

{%- endmacro %} {% block page_content %} {{ super() }}
{% 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 %}
{% if n_pages > 1 %} {% endif %}
{% endblock page_content %}