{% extends "forms-side.html" %} {% load forms common %} {% load url from future %} {% block extrahead %} {{ edit_form.media }} {% endblock %} {% block title %}Host {{ host }} {% endblock %} {% block content_title %}Host Information{% endblock %} {% block breadcrumbs %}{{ block.super }} › Hosts › {{ host }} {% endblock %} {% block content %}

{{host}}

Hostname {{ host.hostname }}
Domain {{ host.domain }}
Reporting IP Address {{ host.ipaddress }}
Reverse DNS {{ host.reversedns }}
OS {{ host.os }}
OS Group {{ host.os.osgroup }}
Kernel {{ host.kernel }}
Architecture {{ host.arch }}
Tags {% load tagging_tags %} {% tags_for_object host as tags %} {% for tag in tags %} {{ tag }} {% endfor %}
Last Update {{ host.lastreport }}
Updates Available {{ host.updates.count }}
Reboot Required {{ host.reboot_required }}
Packages Installed {{ host.packages.count}}
Repos In Use{% if host.host_repos_only %}Host Repos{% else %}Host and OS Group Repos{% endif %}
Last 3 reports {% for report in reports %} {{ report.created }} {% endfor %}
{% if user.is_authenticated %} {% if perms.is_admin %}

Edit

{% csrf_token %} {% form_as_div edit_form %}
{% else %}

No permission to edit this Host.

{% endif %} {% endif %} {% endblock %}