aboutsummaryrefslogtreecommitdiff
blob: eb7d291b1be0023c061d8a6df9644094908c333b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{% extends "base.html" %}


{% block main %}

<table>
<tr>
  <th>Type</th>
  <th>Path</th>
  <th>Hash</th>
</tr>

{% for ppf in ppfs %}
<tr class="{% cycle odd,even %}">
  <td>{{ppf.filetype.name}}</td>
  <td>{{ppf.file.path}} <a href="/collagen/search/by-path/{{ppf.file.path}}" title="see list of packages containing this file">[I]</a><br /></td>
  <td>{{ppf.hash}}</td>
</tr>
{% endfor %}
</table>
{% endblock %}