{% extends "base.html" %}
{% import "macros.html" as macros %}
{% block title %}Koschei - {{ build.package.name }} - build {{ build.task_id }}{% endblock %}
{% block content %}
{% set editable = "" if g.user else 'disabled="true"' %}
Status |
{{ build.state_string }}
|
{% if build.state == build.RUNNING and g.user.admin %}
|
{% endif %}
Epoch |
{{ build.epoch }}
|
Version |
{{ build.version }}
|
Release |
{{ build.release }}
|
Started |
{{ build.started | date}}
|
Finished |
{{ build.finished | date }}
|
Repo ID |
{{ build.repo_id }}
|
Koji tasks |
{{ build.task_id }}
|
|
|
{% if build.deps_processed %}
{{ macros.depchange_table(build.dependency_changes) }}
{% else %}
|
{% if build.deps_processed %}
Dependencies for this build couldn't be processed |
{% else %}
Dependencies for this build weren't processed yet |
{% endif %}
{% endif %}
{% endblock %}