Recent Builds
{% if recent_builds.is_empty() %}
No builds yet
Builds will appear here once an evaluation triggers them.
{% else %}
| Job | Status | System | Created |
{% for b in recent_builds %}
| {{ b.job_name }} |
{{ b.status_text }} |
{{ b.system }} |
{{ b.created_at }} |
{% endfor %}
{% endif %}
Recent Evaluations
{% if recent_evals.is_empty() %}
No evaluations yet
The evaluator will poll configured jobsets automatically.
{% else %}
| Commit | Status | Time |
{% for e in recent_evals %}
| {{ e.commit_short }} |
{{ e.status_text }} |
{{ e.time }} |
{% endfor %}
{% endif %}