{% load datetime_formatting %}
{% if host.facts.ansible_distribution and host.facts.ansible_distribution_version %}
{{ host.facts.ansible_distribution }} {{ host.facts.ansible_distribution_version }}
{% endif %}
{% if host.facts.ansible_kernel %}
kernel {{ host.facts.ansible_kernel }}
{% endif %}
{% if host.facts.ansible_python_version %}
python {{ host.facts.ansible_python_version }}
{% endif %}
{% if host.facts.ansible_uptime_seconds %}
Uptime: {{ host.facts.ansible_uptime_seconds | duration_from_seconds }}
{% endif %}