{% extends "base.html" %} {% load common bootstrap3 %} {% block page_title %}Host - {{ host }} {% endblock %} {% block breadcrumbs %} {{ block.super }}
  • Hosts
  • {{ host }}
  • {% endblock %} {% block content_title %} Host - {{ host }} {% endblock %} {% block content %}
    Hostname {{ host.hostname }}
    Domain {{ host.domain }}
    Reporting IP Address {{ host.ipaddress }}
    Reverse DNS {{ host.reversedns }}
    OS Release {{ host.osvariant.osrelease }}
    OS Variant {{ host.osvariant }}
    Kernel {{ host.kernel }}
    Architecture {{ host.arch }}
    Tags {% for tag in host.tags.all %} {{ tag }} {% endfor %}
    Updated {{ host.updated_at }}
    Last Report {{ host.lastreport }}
    Packages Installed {{ host.packages.count}}
    Updates Available {{ host.updates.count }}
    Errata{{ host.errata.count }}
    Reboot Required {{ host.reboot_required }}
    Repos In Use{% if host.host_repos_only %}Host Repos{% else %}Host and OS Release Repos{% endif %}
    Last 3 reports
    {% if user.is_authenticated and perms.is_admin %} {% bootstrap_icon "trash" %} Delete this Host {% bootstrap_icon "edit" %} Edit this Host {% bootstrap_icon "refresh" %} Find Updates for this Host {% endif %}
    {% for package in packages_with_updates %} {% endfor %}
    Installed PackageUpdate Available
    {% if package.update %} {% if package.update.security %} {% else %} {% endif %} {% endif %} {{ package }} {% if package.update %} {{ package.update.newpackage }} {% endif %}
    {% if hostrepos %} {% for hostrepo in hostrepos %} {% endfor %} {% endif %} {% with osrelease_repos=host.osvariant.osrelease.repos.select_related %} {% if osrelease_repos and not host.host_repos_only %} {% for osrelease_repo in osrelease_repos %} {% if osrelease_repo.arch == host.arch or osrelease_repo.arch == 'any' %} {% endif %} {% endfor %} {% endif %} {% endwith %}
    NameTypePriorityEnabledSecurity
    {{ hostrepo.repo.name }} Host {{ hostrepo.priority }} {% yes_no_img hostrepo.enabled %} {% yes_no_img hostrepo.repo.security %}
    {{ osrelease_repo.name }} OS Release N/A {% yes_no_img osrelease_repo.enabled %} {% yes_no_img osrelease_repo.security %}
    {% gen_table host.modules.all %}
    {% endblock %}