{% extends "base.html" %} {% block title %}{{ _("Job") }}: {{ job.name }}{% end block %} {% block body %}
{{ _("This build job is in an aborted state, because the build process crashed unexpectedly.") }} {{ _("In most cases, there is no log file and you must figure out the issue on your own.") }}
{{ _("The error code is:") }} {% if job.aborted_state == -11 %} SEGV - {{ _("Segmentation violation") }} {% else %} {{ job.aborted_state }} - {{ _("Unknown") }} {% end %}
{% if current_user and current_user.is_admin() %}{{ _("You may resubmit the job to try again:") }} {{ _("Re-submit build") }}
{% end %}{{ _("#%s in the build queue") % job.rank }}
{% end %}
{{ friendly_time(job.duration) }}
{% if job.builder %}
{{ job.builder.name }}
{% else %}
{{ _("No builder assigned.") }}
{% end %}
{{ _("Created") }}
{{ format_date(job.time_created, full_format=True) }}
{{ _("Started") }}
{{ format_date(job.time_started, full_format=True) }}
{{ _("Finished") }}
{{ format_date(job.time_finished, full_format=True) }}
{{ _("ETA") }}
{{ format_eta(job.eta) }}
{{ _("No logs available, yet.") }}
{% end %} {% if job.buildroot %}{{ _("Buildroot") }} ({{ _("%s package", "%s packages", len(job.buildroot)) % len(job.buildroot) }})
{% end %}