{% load django_templating_sigh %} {% if client %}
Time Ran: {{interaction.timestamp}}

Node: {{client.name}}

{% if interaction.repo_rev_code %}Revision: {{interaction.repo_rev_code}}{% endif %}
 
 
{% if interaction.isclean %}
Node is clean; Everything has been satisfactorily configured.
{% endif %} {% if interaction.isstale %}
This node did not run within the last 24 hours-- it may be out of date.
{% endif %} {% if interaction.bad %}
{{interaction.bad.count}} items did not verify and are considered Dirty.
    {% for bad in interaction.bad|sortwell %}
  • {{bad.entry.kind}}: {{bad.entry.name}}
  • {% endfor %}
{% endif %} {% if interaction.modified %}
{{interaction.modified.count}} items were modified in the last run.
    {% for modified in interaction.modified|sortwell %}
  • {{modified.entry.kind}}: {{modified.entry.name}}
  • {% endfor %}
{% endif %} {% if interaction.extra %}
{{interaction.extra.count}} extra configuration elements on the node.
    {% for extra in interaction.extra|sortwell %}
  • {{extra.entry.kind}}: {{extra.entry.name}}
  • {% endfor %}
{% endif %}
{% else %}

No record could be found for this client.

{% endif %}