]> git.ipfire.org Git - people/jschlag/pbs.git/blob - src/templates/distro-source-commits.html
Use autotools
[people/jschlag/pbs.git] / src / templates / distro-source-commits.html
1 {% extends "base.html" %}
2
3 {% block body %}
4 <h1>
5 {{ _("Distribution") }}: {{ distro.name }}
6 <span>- {{ _("Source") }}: {{ source.name }} - {{ _("Commits") }}</span>
7 </h1>
8
9 <p>
10 {{ _("Source repository") }}:
11 <a href="/distro/{{ distro.identifier }}/source/{{ source.identifier }}">
12 {{ source.name }}
13 </a>
14 </p>
15
16 {% module CommitsTable(distro, source, commits) %}
17
18 <div class="links">
19 {% if offset %}
20 <a href="?offset={{ offset - number }}">{{ _("Previous commits") }}</a>
21 {% end %}
22
23 {% if limit %}
24 <a href="?offset={{ offset + number }}">{{ _("Next commits") }}</a>
25 {% end %}
26 </div>
27 {% end block %}