]> git.ipfire.org Git - ipfire.org.git/blob - templates/sources.html
Remove obsolete pakfire CGI scripts.
[ipfire.org.git] / templates / sources.html
1 {% extends "base.html" %}
2
3 {% block title %}{{ _("Sources") }}{% end block %}
4
5 {% block content %}
6 <h3>{{ _("Source Code") }}</h3>
7
8 <p>
9 {{ _("There are %s source files on the server.") % len(files) }}
10 </p>
11
12 <br class="clear" />
13
14 <ul class="sources">
15 {% for file in files %}
16 <li>
17 {{ file["hash"] }} |
18 <a href="/{{ file["dir"] }}/{{ file["name"] }}">{{ file["name"] }}</a>
19 ({{ file["size"] }})
20 </li>
21 {% end %}
22 </ul>
23 {% end block %}