{% extends "base.html" %} {% block title %}Channel {{ channel.name }} - circus{% endblock %} {% block auth %} {% if !auth_name.is_empty() %} {{ auth_name }}
{% else %} Login {% endif %} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

Channel: {{ channel.name }}

Current Evaluation
{% match channel.current_evaluation_id %} {% when Some with (eval_id) %} {{ eval_id }} {% when None %} None {% endmatch %}
Updated
{{ channel.updated_at.format("%Y-%m-%d %H:%M UTC") }}
Nix Channel
nix-channel --add http://<server>/api/v1/channels/{{ channel.id }}/nixexprs.tar.xz {{ channel.name }}
{% if builds.is_empty() %}
{% match channel.current_evaluation_id %} {% when None %}
No evaluation promoted to this channel yet
Use the API or admin panel to promote a completed evaluation.
{% when Some with (_) %}
No succeeded builds in current evaluation
{% endmatch %}
{% else %}

Contents ({{ builds.len() }} jobs)

{% if succeeded_count > 0 %} {{ succeeded_count }} succeeded {% endif %} {% if failed_count > 0 %} {{ failed_count }} failed {% endif %} {% if pending_count > 0 %} {{ pending_count }} pending {% endif %}
{% for b in builds %} {% endfor %}
Job System Status Output
{{ b.job_name }} {{ b.system }} {{ b.status_text }} {% if !b.output_path.is_empty() %} {{ b.output_path }} {% else %} - {% endif %}
{% endif %} {% endblock %}