{% extends "base.html" %} {% import "macros.html" as macros %} {% macro collapse_btn(items, max, type, id) %} {% if items|length > max %}
{% endif %} {% endmacro %} {% block title %}Koschei - {{ base.name }}{% endblock %} {% block subheader %}
{% if not entry.version %}
{# is an resolution entry #}
{{ entry.timestamp|date }}
{% if entry.resolved %}
Package dependencies resolved successfuly
{% else %}
Package resolution failed
{% for problem in entry.problems[5:] %}
{% endif %}
{{ macros.task_tree(build, show_time=True, show_details_btn=True, show_logs=True) }}
{% if build.deps_resolved %}
{{ macros.depchange_table(build.dependency_changes[:10]) }}
{% if build.dependency_changes|length > 10 %}
{{ macros.depchange_table(build.dependency_changes[10:]) }}
{% endif %}
{% elif build.deps_resolved is sameas False %}
Dependencies for this build couldn't be processed
{% else %}
Dependencies for this build weren't processed yet
{% endif %}
|