{% extends "base.html" %} {% load bcfg2_tags %} {% comment %} This is needed for Django versions less than 1.5 {% endcomment %} {% load url from future %} {% block title %}Bcfg2 - Client {{client.name}}{% endblock %} {% block extra_header_info %} {% endblock %} {% block body_onload %}javascript:clientdetailload(){% endblock %} {% block pagebanner %}Client Details{% endblock %} {% block content %}

{{client.name}}

[manage] View History | Jump to 
{% if interaction.isstale %}
This node did not run within the last 24 hours — it may be out of date.
{% endif %} {% if interaction.server %} {% endif %} {% if interaction.profile %} {% endif %} {% if interaction.repo_rev_code %} {% endif %} {% if not interaction.isclean %} {% endif %}
Timestamp{{interaction.timestamp}}
Served by{{interaction.server}}
Profile{{interaction.profile}}
Revision{{interaction.repo_rev_code}}
State{{interaction.state|capfirst}}
Managed entries{{interaction.total_count}}
Deviation{{interaction.percentbad|floatformat:"3"}}%
{% for group in interaction.groups.all %} {% if forloop.first %}

Group membership

[+]
{% endif %} {% if forloop.last %}
{% endif %} {% endfor %} {% for bundle in interaction.bundles.all %} {% if forloop.first %}

Bundle membership

[+]
{% endif %} {% if forloop.last %}
{% endif %} {% endfor %} {% for entry_type, entry_list in entry_types.items %} {% if entry_list %}

{{ entry_type|capfirst }} Entries — {{ entry_list|length }}

[+]
{% for entry in entry_list %} {% endfor %}
{{entry.entry_type}} {{entry.name}}
{% endif %} {% endfor %} {% if interaction.failures.all %}

Failed Entries — {{ interaction.failures.all|length }}

[+]
{% for failure in interaction.failures.all %} {% endfor %}
{% endif %} {% if entry_list %}

Recent Interactions

{% include "widgets/interaction_list.inc" %}
more...
{% endif %} {% endblock %}