{# Copyright (C) 2013 The Debsources developers . See the AUTHORS file at the top-level directory of this distribution and at https://salsa.debian.org/qa/debsources/blob/master/AUTHORS License: GNU Affero General Public License, version 3 or above. #} {# copied from templates/search.html #} {% extends name+"/base.html" %} {% block title %}Search: {{ query }}{% endblock %} {% block breadcrumbs %}search / {{ query }}{% endblock %} {% block content %}

{{ self.title() }}

{{ macros.show_suite(suite) }}

Exact matches

{% if results.exact %} {{ macros.listpackages([results.exact], suite) }} {% else %} None. {% endif %}

Other results

{% if results.other[1] or (not results.exact and results.other[0]) %} {{ macros.listpackages(results.other, suite) }} {% else %} None. {% endif %} {% endblock %}