{% extends "base.html" %} {% load url from future %} {% block title %}Overview{% endblock %} {% block heading %}Overview{% endblock %} {% block content %}

Statistics

All Hosts: {{ hosts.count }}| Hosts Pending Update: {{ updatecount }}
Package Updates: {{ packagecount }}| Security Updates: {{ securitycount }}
Facts: {{ factcount }}| Fact Entries: {{ factvaluecount }}
{% if problemhosts %}

Problematic puppetized hosts

The following {{ problemhosts.count }} hosts have not contacted puppetmaster during the past {{ timeout|timesince }}:
{% for host in problemhosts %} {% endfor %}
Hostname Last update
{{ host.name }} {{ host.updated_at|timesince }}
{% endif %}
{% endblock %}