]> git.ipfire.org Git - people/jschlag/pbs.git/blob - src/templates/build-queue.html
b970110a1bd8e9dbfbd91d9b81d41f457d706a43
[people/jschlag/pbs.git] / src / templates / build-queue.html
1 {% extends "base.html" %}
2
3 {% block title %}{{ _("Builds") }} - {{ _("Job queue") }}{% end block %}
4
5 {% block body %}
6 <h1>{{ _("Builds") }}: {{ _("Job queue") }}</h1>
7 <p>
8 {{ _("This is a list of all jobs that are waiting to be processed.") }}
9 {{ _("They one at the top is next.") }}
10 </p>
11
12 {% if jobs %}
13 {% module JobsList(jobs) %}
14 {% else %}
15 {{ _("No jobs to do.") }}
16 {% end %}
17 {% end %}