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

{{ job.title }}

{{ job.description }}
Launch a build Edit this job {% if doing is not none %}

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

{% for build in doing|sort(attribute='start', reverse=True) %} {% endfor %}
Build command line duration status
{{ build.start | strftime("%d %b %Y, %H:%M:%S") }}
{{ build.cmd }}
{{ (gettime() - build.start) | duration }}
{% endif %} {% if todo is not none %}

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

{% for build in todo|sort(attribute='created_at', reverse=True) %} {% endfor %}
Build command line since status
{{ build.created_at | strftime("%d %b %Y, %H:%M:%S") }}
{{ build.cmd }}
{{ (gettime() - build.created_at) | duration }}
{% endif %} {% if done is not none %}

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

{% for build in done|sort(attribute='start', reverse=True) %} {% endfor %}
Build command line duration status delete
{{ build.start | strftime("%d %b %Y, %H:%M:%S") }}
{{ build.cmd }}
{{ (build.end - build.start) | duration }} / {{ build.code }}
{% endif %} {% if doing is none and todo is none and done is none %}

No build history yet :(

{% endif %}
{% endblock %} {% block scripts %} {{ super() }}

Proceed Cancel

×
{% endblock %}