{# Copyright (C) 2013 Matthieu Caneill License: GNU Affero General Public License, version 3 or above. #} {% extends "base.html" %} {% import "macros.inc.html" as macros %} {% block title %}Search: {{ query }}{% endblock %} {% block breadcrumbs %}search / {{ query }}{% endblock %} {% block content %}

{{ self.title() }}

Exact matches

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

Other results

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