{% extends "base.html" %} {% block title %}{{ _("Manage build %s") % build.name }}{% end block %} {% block body %} {% if build.critical_path and not current_user.has_perm("manage_critical_path") %}

{{ _("Permission denied") }}

{{ _("You do not have the permission to update packages that belong to the critical path.") }}
{% end %} {% if not build.all_jobs_finished %}

{{ _("Not all jobs are finished") }}

{{ _("Not all jobs of this build are finished, yet.") }} {{ _("It is strongly discouraged to push this build into the next repository.") }}

{{ _("However, the build will be automatically unpushed if one or more build jobs fail.") }}

{% end %}
{% raw xsrf_form_html() %}
{% if mode == "admin" %} {{ _("Push to a repository") }} {% elif build.repo %} {{ _("Push to next repository") }} {% else %} {{ _("Push to first repository") }} {% end %}
{% if mode == "admin" %} {% elif next_repo %} {{ next_repo.name }} - {{ next_repo.summary }} {% end %}

{{ _("This is the target repository for the build.") }}

{% if current_user and current_user.is_admin() %}
{% if mode == "admin" %} {{ _("Switch to user mode") }} {% else %} {{ _("Switch to admin mode") }} {% end %}
{% end %} {% end block %}