{% extends "base.html" %} {% import "macros.html" as macros %} {% block content %} {% if package.state_string == 'unresolved' %} {% for problem in package.resolution_result.problems %} {% endfor %}
Dependency problems
{{ problem.problem }}
{% endif %} {% if package.unapplied_changes %} {{ macros.depchange_table(package.unapplied_changes) }}
Dependency changes since last build
{% endif %} {% for build in package.all_builds %} {% endfor %}
State Koji task Started Dependency changes Build details
{{ build.state_string }} {{ build.task_id }} {{ build.started | date }} {{ macros.depchange_table(build.dependency_changes, limit=10, more_link=url_for('build_detail', name=package.name, build_id=build.id)) }} details
{% endblock %}