2018-03-19 19:08:41 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
{{ title }}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2020-03-28 19:09:20 +01:00
|
|
|
{% if authors %}
|
|
|
|
<p class="alert alert-primary">
|
|
|
|
Did you mean to search for packages by
|
|
|
|
|
|
|
|
{% for author in authors %}
|
|
|
|
<a href="{{ url_for('packages.list_all', type=type, author=author[0], q=author[1]) }}">{{ author[0] }}</a>
|
|
|
|
{% if not loop.last %}
|
|
|
|
,
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
?
|
|
|
|
</p>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
|
2018-05-18 03:31:38 +02:00
|
|
|
{% from "macros/packagegridtile.html" import render_pkggrid %}
|
|
|
|
{{ render_pkggrid(packages) }}
|
2018-05-29 17:52:53 +02:00
|
|
|
|
2020-07-10 23:08:52 +02:00
|
|
|
|
|
|
|
{% from "macros/pagination.html" import render_pagination %}
|
|
|
|
{{ render_pagination(pagination, url_builder) }}
|
|
|
|
|
2018-08-25 19:20:45 +02:00
|
|
|
|
|
|
|
{% if topics %}
|
|
|
|
<h2 style="margin-top:2em;">More content from the forums</h2>
|
|
|
|
|
|
|
|
{% from "macros/topics.html" import render_topics %}
|
|
|
|
{{ render_topics(topics, current_user) }}
|
|
|
|
{% endif %}
|
|
|
|
|
2018-03-19 19:08:41 +01:00
|
|
|
{% endblock %}
|