aboutsummaryrefslogtreecommitdiff
path: root/app/templates/packages/list.html
blob: 5e596faf5f28f30279726b3958b3585e8f20ea22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{% extends "base.html" %}

{% block title %}
{{ title }}
{% endblock %}

{% block content %}
	<form method="get" action="" class="plsearchform">
		{% if type %}<input type="hidden" name="type" value="{{ type }}" />{% endif %}
		<input type="text" name="q" value="{{ query or ''}}" />
		<input type="submit" value="Search" />

		<p>
			Found {{ packages | count }} packages.
		</p>
	</form>

	<!--<aside class="box box_grey outsidecontainer">
		<h3>Tags</h3>

		<ul class="flatlist">
			{% for t in tags %}
				<li><a href="{{ url_for('packages_page', q=(query or '')+' tag:'+t.name, type=type) }}">
					{{ t.title }}
				</a></li>
			{% else %}
				<li><i>No tags available</i></ul>
			{% endfor %}
		</ul>
	</aside> -->

	{% from "macros/packagegridtile.html" import render_pkggrid %}
	{{ render_pkggrid(packages) }}
{% endblock %}