{# Copyright (C) 2023, CERN This software is distributed under the terms of the MIT licence, copied verbatim in the file "LICENSE". In applying this license, CERN does not waive the privileges and immunities granted to it by virtue of its status as Intergovernmental Organization or submit itself to any jurisdiction. #} {% 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
{% for result in results %} {{ package_card(result) }} {% endfor %} {% endif %}
{% endblock page_content %}