]> git.ipfire.org Git - people/jschlag/pbs.git/blame - src/templates/build-queue.html
Use autotools
[people/jschlag/pbs.git] / src / templates / build-queue.html
CommitLineData
f6e6ff79
MT
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 %}
4c6be289 13 {% module JobsList(jobs) %}
f6e6ff79
MT
14 {% else %}
15 {{ _("No jobs to do.") }}
16 {% end %}
17{% end %}