{% extends "base.html" %} {% import "macros.html" as macros %} {% block title %}Koschei - {{ base.name }}{% endblock %} {% macro change_link(change) %} {% if change %} other affected {% else %} {% endif %} {% endmacro %} {% macro next_change(changes) %} {% set change = inext(changes, None) %} {{ change | format_depchange | columnize(css_class="mono") }} {{ change_link(change) }} {% endmacro %} {% block content %} {{ macros.collection_chooser(allow_all=False) }}
{% if collection %}

State in all collections

{% else %}

Choose a collection

{% endif %}
{% if not package and collection %} {# collection selected, but package is not in it #}
Package doesn't exist in selected collection {{ collection }}. Please select a different one.
{% elif package and collection %} {% set editable = "" if g.user else 'disabled="true"' %}
{% if g.user %} {% endif %} {% if collection.bugzilla_product and collection.bugzilla_version %} {% endif %} {% if g.user %} {% endif %} {{ macros.depchange_table(package.unapplied_changes) }}
Package state {{ package.state_icon }} {{ package.state_string }} {% if package.scheduler_skip_reason %}
Package is not being scheduled {% if package.scheduler_skip_reason == Package.SKIPPED_NO_SRPM %} because no suitable SRPM was found {% endif %} {% endif %}
Current priority {{ package.current_priority }}
Manual priority
Static priority {{ package.static_priority }}
Arch override
Skip resolution
Global package groups {% for group in package.global_groups %} {{ group.name }} {% if group.editable %} {% endif %} {% endfor %}
Your package groups {% for group in package.user_groups %} {{ group.full_name }} {% endfor %}
Available package groups {% for group in package.available_groups %} {{ group.full_name }} {% endfor %}
Links {{ generate_links(package) }}
Bug reports File new FTBFS bug
{% if is_continuation %} {% endif %} {% for entry in entries %} {% if not entry.version %} {# is an resolution entry #} {% set problems = iter(entry.problems) %} {% if entry.resolved %} {% else %} {% endif %} {% for problem in problems %} {% endfor %} {% else %} {# is a build entry #} {% set build = entry %} {% set row_class = ["odd", "even"][loop.index % 2] + ["", " real"][build.real] %} {% set changes = iter(build.dependency_changes) if build.deps_resolved else iter([]) %} {% if build.real %} {% endif %} {% if build.deps_resolved %} {{ next_change(changes) }} {% elif build.deps_resolved is sameas False %} {% else %} {% endif %} {% for subtask in build.build_arch_tasks %} {{ next_change(changes) }} {% endfor %} {% for change in changes %} {{ change | format_depchange | columnize(css_class="mono") }} {{ change_link(change) }} {% endfor %} {% endif %} {% endfor %}
State Koji task Started Dependency changes Build details
...
Package dependencies resolved successfuly
Package resolution failed {{ inext(problems, '') }}
{{ problem }}
Real build: {{ package.name }}-{{ build.version }}-{{ build.release }}
{{ build.state_string }} {{ build.task_id }} {{ build.started | date }} Dependencies for this build couldn't be processedDependencies for this build weren't processed yet details
{{ subtask.arch }}
{{ "├└"[loop.last] }}{{ subtask.task_id }} ( build.log | root.log )
{% if not is_last %} Previous history {% endif %} {% endif %} {% endblock %}