{% extends "base.html" %} {% block title %}Queue - FC CI{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

Build Queue

Running ({{ running_count }})

{% if running_builds.is_empty() %}

No builds currently running.

{% else %} {% for b in running_builds %} {% endfor %}
JobSystemStarted
{{ b.job_name }} {{ b.system }} {{ b.created_at }}
{% endif %}

Pending ({{ pending_count }})

{% if pending_builds.is_empty() %}

No builds pending.

{% else %} {% for b in pending_builds %} {% endfor %}
JobSystemCreated
{{ b.job_name }} {{ b.system }} {{ b.created_at }}
{% endif %} {% endblock %}