{{ job.arch }}
|
{% if job.state == "new" %}
{{ _("New") }}
{% elif job.state == "pending" %}
{{ _("Pending") }}
{% elif job.state == "failed" %}
{{ _("Failed") }}
{% elif job.state == "dispatching" %}
{{ _("Dispatching") }}
{% elif job.state == "finished" %}
{{ _("Finished") }}
{% elif job.state == "running" %}
{{ _("Running") }}
{% elif job.state == "aborted" %}
{{ _("Aborted") }}
{% elif job.state == "dependency_error" %}
{{ _("Dependency error") }}
{% else %}
{{ job.state }}
{% end %}
|
{% if job.builder %}
{{ job.builder.name }}
{% else %}
{{ _("N/A") }}
{% end %}
|
{% if job.state == "running" %}
{{ _("Running since %s") % friendly_time(job.duration) }}
{% elif job.duration %}
{{ friendly_time(job.duration) }}
{% else %}
{{ _("Not finished, yet.") }}
{% end %}
|
{% end %}
{% if not build.supported_arches == "all" %}