{% extends "base.html" %} {% block main %} {% include "navbar.html" %}
{% include "flashed.html" %}

Build history

{% if doing|length != 0 %}

#{{ doing | length }} build{% if doing|length > 1 %}s{% endif %} running

{% for job_label,build in doing %} {% endfor %}
Job Build command line duration status
{{ job_label }} {{ build.start | strftime("%d %b %Y, %H:%M:%S") }}
{{ build.cmd }}
{{ (gettime() - build.start) | duration }}
{% endif %} {% if todo|length != 0 %}

#{{ todo | length }} build{% if todo|length > 1 %}s{% endif %} pending

{% for job_label,build in todo %} {% endfor %}
Job Build command line since status
{{ job_label }} {{ build.created_at | strftime("%d %b %Y, %H:%M:%S") }}
{{ build.cmd }}
{{ (gettime() - build.created_at) | duration }}
{% endif %} {% if done|length != 0 %}

#{{ done | length }} build{% if done|length > 1 %}s{% endif %} finished

{% for job_label,build in done %} {% endfor %}
Job Build command line duration status
{{ job_label }} {{ build.start | strftime("%d %b %Y, %H:%M:%S") }}
{{ build.cmd }}
{{ (build.end - build.start) | duration }} / {{ build.code }}
{% endif %} {% if doing|length == 0 and todo|length == 0 and done|length == 0 %}

No build history yet :(

{% endif %}
{% endblock %}