]> git.ipfire.org Git - ipfire.org.git/blame - templates/builds.html
Move everything to the root of the repository.
[ipfire.org.git] / templates / builds.html
CommitLineData
81675874 1{% extends "base.html" %}
2
3{% block title %}{{ _("Builds") }}{% end block %}
4
5{% block content %}
6 <h3>{{ _("Nightly builds") }}</h3>
7
8 <table id="builds">
9 <tbody>
10 {% if builds["<12h"] %}
11 <tr class="headline">
12 <td colspan="3">
13 {{ _("Less than 12 hours ago") }}
14 </td>
15 </tr>
16 {% for build in builds["<12h"] %}
17 {{ modules.Build(build) }}
18 {% end %}
19 {% end %}
20
21 {% if builds[">12h"] %}
22 <tr class="headline">
23 <td colspan="3">
24 {{ _("More than 12 hours ago") }}
25 </td>
26 </tr>
27 {% for build in builds[">12h"] %}
28 {{ modules.Build(build) }}
29 {% end %}
30 {% end %}
31
32 {% if builds[">24h"] %}
33 <tr class="headline">
34 <td colspan="3">
35 {{ _("More than a day ago") }}
36 </td>
37 </tr>
38 {% for build in builds[">24h"] %}
39 {{ modules.Build(build) }}
40 {% end %}
41 {% end %}
42 </tbody>
43 </table>
44{% end block %}