diff options
Diffstat (limited to 'web/templates/view-content.html')
-rw-r--r-- | web/templates/view-content.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/web/templates/view-content.html b/web/templates/view-content.html new file mode 100644 index 0000000..eb7d291 --- /dev/null +++ b/web/templates/view-content.html @@ -0,0 +1,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 %} |