{% extends "base.html" %} {% load i18n %} {% block content %}

RPM Override Management

{% trans "ID" %}
{{ release.id }}
{% trans "Release ID" %}
{{ release.release_id }}
{% trans "Name" %}
{{ release.name }}
{% trans "Short Name" %}
{{ release.short }}
{% trans "Version" %}
{{ release.version }}
{% trans "Release Type" %}
{{ release.release_type }}
{% if release.base_product %}
{% trans "Base Product" %}
{{ release.base_product.name }} ({{ release.base_product }})
{% endif %}

{% trans 'Variants' %}

{% for variant in release.variant_set.all %} {% endfor %}
{% trans "UID" %} {% trans "ID" %} {% trans "Name" %} {% trans "Type" %} {% trans "Arches" %}
{{ variant.variant_uid }} {% if variant.integrated_from %} (integrated from {{ variant.integrated_from.release_id }}) {% elif variant.integrated_to %} (integrated to {{ variant.integrated_to }}) {% endif %} {{ variant.variant_id }} {{ variant.variant_name }} {{ variant.variant_type }} {{ variant.arches|join:", " }}

{% trans 'Repositories' %}

{% for repo in repos %} {% endfor %}
# {% trans "Variant.Arch" %} {% trans "Service" %} {% trans "Repo Family" %} {% trans "Content Format" %} {% trans "Content Category" %} {% trans "Shadow" %} {% trans "Repository" %} {% trans "Product ID" %}
{{ repo.pk }} {{ repo.variant_arch.variant.variant_uid }}.{{ repo.variant_arch.arch }} {{ repo.service }} {{ repo.repo_family }} {{ repo.content_format }} {{ repo.content_category }} {{ repo.shadow }} {{ repo.name }} {{ repo.product_id|default_if_none:"—" }}
{% endblock %}