{% 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 %}
Name Type Priority Enabled Security
{% if hostrepos %}
{% for hostrepo in hostrepos %}
{{ hostrepo.repo.name }}
Host
{{ hostrepo.priority }}
{% yes_no_img hostrepo.enabled %}
{% yes_no_img hostrepo.repo.security %}
{% endfor %}
{% endif %}
{% with osrepos=host.os.osgroup.repos.select_related %}
{% if osrepos and not host.host_repos_only %}
{% for osrepo in osrepos %}
{% if osrepo.arch == host.arch %}
{{ osrepo.name }}
OS Group
N/A
{% yes_no_img osrepo.enabled %}
{% yes_no_img osrepo.security %}
{% endif %}
{% endfor %}
{% endif %}
{% endwith %}
Show/Hide Installed Packages
{% for package in host.packages.select_related %}
{{ package }}
{% endfor %}
{% endblock %}