{% extends "base.html" %} {% block body %} {% include "partials/playbook_card.html" %} {% load datetime_formatting %}
Facts | Host |
CHANGED |
FAILED |
OK |
SKIPPED |
UNREACHABLE |
---|---|---|---|---|---|---|
{% if static_generation %} {{ host.name }} {% else %} {{ host.name }} {% endif %} | {% if static_generation or host.changed == 0 %} {{ host.changed }} {% else %} {{ host.changed }} {% endif %} | {% if static_generation or host.failed == 0 %} {{ host.failed }} {% else %} {{ host.failed }} {% endif %} | {% if static_generation or host.ok == 0 %} {{ host.ok }} {% else %} {{ host.ok }} {% endif %} | {% if static_generation or host.skipped == 0 %} {{ host.skipped }} {% else %} {{ host.skipped }} {% endif %} | {% if static_generation or host.unreachable == 0 %} {{ host.unreachable }} {% else %} {{ host.unreachable }} {% endif %} |