{% extends "coprs/detail.html" %} {% from "coprs/_coprs_forms.html" import copr_legal_flag_form with context %} {% block overview_selected %}selected{% endblock %} {% block detail_body %}

Description

{{ copr.description_or_not_filled }}

Installation Instructions

{{ copr.instructions_or_not_filled}}

Yum repo

{{ copr.owner.name }}-{{ copr.name }}.repo

Active Releases

{% for mock_chroot in copr.active_mock_chroots %} {% if loop.index < copr.active_mock_chroots|length %} {% if mock_chroot.os_release != copr.active_mock_chroots[loop.index].os_release or mock_chroot.os_version != copr.active_mock_chroots[loop.index].os_version %} {# next release is different => release-end #} {% else %} {% endif %} {% else %}{# last line => release-end for sure #} {% endif %} {% if mock_chroot.os_release != copr.active_mock_chroots[loop.index0 - 1].os_release or mock_chroot.os_version != copr.active_mock_chroots[loop.index0 - 1].os_version or loop.index0 == 0 %} {# previous os_release-os_version were different or this is the first one #} {% else %} {% endif %} {% else %} {% endfor %}
Release Architecture
{{ mock_chroot.os_release|capitalize }} {{ mock_chroot.os_version }}{{ mock_chroot.arch }}
No active releases
{% if copr.repos_list %}

Repository List

{% endif %}
{{ copr_legal_flag_form(form, copr) }} {% endblock %}