{% extends "base.html.twig" %} {% block title %}Overview of run for {{ title }}{% endblock %} {% block content %}

Overview of runs for {{ title }}

{% if rebootjob %} {% elseif allruns %}

Only show failed runs

{% elseif not allruns %}

Show all runs

{% endif %}
{% for run in runs %}
{{ run.result }}
{% endfor %}
{% endblock %}