blob: 6f5abe54f6300726cecc5ba2f33c082c49d93d8a (
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
|
{% extends "base.html" %}
{% block title %}
Debian Project patch tracking system
{% endblock %}
{% block content %}
<h1>Debian Project patch tracking system</h1>
<h2>Search Results: {{ searchDescription }} - {{ searchKey }}</h2>
<table class="packagelisting">
<tr>
<th>package</th>
{% for dist in packageIndex.dists %}
<th>{{ dist }}</th>
{% endfor %}
</tr>
{% for row in packageIndex %}
<tr>
<td>
<a name="{{ row.package.anchor_name }}" />
<a href="http://packages.debian.org/{{ row.package.name }}">{{ row.package.name }}</a>
</td>
{% for pkg in row.entries %}
<td>
{% if pkg %}
<a href="{{ conf.root_url }}/package/{{ pkg.name }}/{{ pkg.version }}">{{ pkg.wrappable_version|safe }}</a>
{% else %}
<i>n/a</i>
{% endif %}
</td>
{% endfor %}
</tr>
{% endfor %}
</table>
{% endblock %}
|