{% extends "base.html" %} {% from "_macros.html" import crumbs %} {% block title %}Run {{ run.id[:8] }} — Steward{% endblock %} {% block breadcrumb %}{{ crumbs([("Ansible", "/ansible/"), ("Run " ~ run.id[:8], "")]) }}{% endblock %} {% block content %}
| Host | ok | changed | unreachable | failed | skipped |
|---|---|---|---|---|---|
| {{ host }} | {{ c.ok }} | {{ c.changed }} | {{ c.unreachable }} | {{ c.failed }} | {{ c.skipped }} |
{{ run.results.failures | join("\n") }}
{% endif %}
{{ run.output or "" }}
{{ run.output or "(no output)" }}
{% endif %}