{% if summary %}
Latest build →
{% endif %}
{% for job in summary %}
{% if job.score >= 80 %}
☀️
{% elif job.score >= 60 %}
🌤
{% elif job.score >= 40 %}
☁
{% elif job.score >= 20 %}
🌧
{% elif job.score >= 0 %}
🌩
{% endif %}
{{ job.name }}
{% for build in job.builds -%}
{%- endfor %}
{% else %}
No jobs found.
{% endfor %}