{% extends "base.html" %} {% block title %}FC CI - Dashboard{% endblock %} {% block auth %} {% if !auth_name.is_empty() %} {{ auth_name }}
{% else %} Login {% endif %} {% endblock %} {% block content %}

Dashboard

{{ total_builds }}
Total Builds
{{ completed_builds }}
Completed
{{ failed_builds }}
Failed
{{ running_builds }}
Running
{{ pending_builds }}
Pending

Queue: {{ pending_builds }} pending, {{ running_builds }} running

{% if !projects.is_empty() %}

Projects Overview

{% for p in projects %} {% endfor %}
ProjectJobsetsLast EvalTime
{{ p.name }} {{ p.jobset_count }} {{ p.last_eval_status }} {{ p.last_eval_time }}
{% endif %}

Recent Builds

{% if recent_builds.is_empty() %}

No builds yet.

{% else %} {% for b in recent_builds %} {% endfor %}
JobStatusSystemCreated
{{ b.job_name }} {{ b.status_text }} {{ b.system }} {{ b.created_at }}
{% endif %}

Recent Evaluations

{% if recent_evals.is_empty() %}

No evaluations yet.

{% else %} {% for e in recent_evals %} {% endfor %}
CommitStatusTime
{{ e.commit_short }} {{ e.status_text }} {{ e.time }}
{% endif %} {% endblock %}