{% extends "base.html" %} {% block title %}{{ _("Build") }}: {{ build.name }}{% end block %} {% block body %} {% module BuildHeadline(build) %} {% module BuildStateWarnings(build) %}
{{ _("The state of a build can be either building, testing, stable, obsolete or broken.") }}
{% if current_user and build.has_perm(current_user) %} {% if build.state in ("building", "testing", "stable") %}
{% raw xsrf_form_html() %} {% if build.repo %} {% end %}

{{ _("Mark build as obsolete") }}

{{ _("If a package is updated by an other package it should be marked as obsolete.") }} {{ _("For obsolete builds, there will be no test jobs created and it is recommended to remove them from the repositories soon.") }}

{{ _("Remove build from the repository it is currently in?") }}
{% end %} {% if build.state == "broken" %}
{% raw xsrf_form_html() %}

{{ _("Unbreak this build") }}

{{ _("In case this build has accidentially be marked as broken, it is possible to recover that state.") }}

{% else %}
{% raw xsrf_form_html() %}

{{ _("Mark build as broken") }}

{{ _("If a package does not build or contains serious bugs, it should be marked as broken.") }} {{ _("Those builds can not be added into any repositories and are removed from all repositories they may currently be in.") }}

{% end %}
 
{% end %} {% if build.repo %}
{{ _("Current repository") }}: {{ build.repo.name }} {{ _("since %s") % locale.format_date(build.repo_time, relative=False) }}
{% end %} {% end block %}