{% extends "base.html" %} {% block title %} {{ query_hint or _("Packages") }} {% endblock %} {% block author_links %} {% if authors %} {% for author in authors %} {{ author[0] }} {% if not loop.last %} , {% endif %} {% endfor %} {% endif %} {% endblock %} {% block content %} {% if authors %}

{{ _("Did you mean to search for packages by %(authors)s?", authors=self.author_links()) }}

{% endif %} {% from "macros/packagegridtile.html" import render_pkggrid %} {{ render_pkggrid(packages) }} {% from "macros/pagination.html" import render_pagination %} {{ render_pagination(pagination, url_set_query) }} {% if topics %}

{{ _("More content from the forums") }}

{% from "macros/topics.html" import render_topics %} {{ render_topics(topics, current_user) }} {% endif %} {% endblock %}