{% extends "base.html" %} {% block title %} {{ _("Repository") }}: {{ repo.name }} - {{ _("Distribution") }}: {{ distro.name }} {% end block %} {% block body %}
{% module Text(repo.description) %}


{{ _("Repository is enabled for builds?") }} {% if repo.enabled_for_builds %} {{ _("Yes") }} {% else %} {{ _("No") }} {% end %}
{{ _("Obsolete builds") }} {{ len(obsolete_builds) }}

{{ _("Total build time") }}

{% for arch, build_time in build_times %} {% end %}
{{ arch }} {{ friendly_time(build_time) }}

{{ _("The table above shows how long it took to build all packages in this repository.") }}

{% if current_user and current_user.is_admin() %}

{% end %} {% if unpushed_builds %}

{{ _("Unpushed builds") }}

{{ _("These builds were already put into this repository, but were not pushed out to the mirror servers, yet.") }}
{% module BuildTable(unpushed_builds, show_repo_time=True) %}
{% end %} {% if builds %}

{{ _("Builds in this repository") }} ({{ len(builds) }})

{% module BuildTable(builds, show_repo_time=True, show_can_move_forward=True) %}
{% end %} {% if obsolete_builds %}

{{ _("Obsolete builds") }} ({{ len(obsolete_builds) }})

{% module BuildTable(obsolete_builds) %}
{% end %} {% end block %}