{% extends "base.html" %} {% block title %} {{ title }} {% endblock %} {% block content %} {% if authors %}

Did you mean to search for packages by {% for author in authors %} {{ author[0] }} {% if not loop.last %} , {% endif %} {% endfor %} ?

{% 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 %}