{% extends "main.html" %} {% load common %} {% load url from future %} {% block title %}Operating System {{ os }} {% endblock %} {% block content_title %}OS Information{% endblock %} {% block breadcrumbs %}{{ block.super }} › Operating Systems › {{ os }} {% endblock %} {% block content %}

{{ os }} Details

Name {{ os.name }}
OS Group{% if os.osgroup != None %} {{ os.osgroup }} {% else %}No OS Group{% endif %}

Hosts where {{ os }} is installed

{% gen_table os.host_set.all %}
{% if user.is_authenticated %} {% if perms.is_admin %}

Actions

{% csrf_token %} {{ link_form }} {{ create_form }}
Delete this OS

{% endif %} {% endif %}

Other Operating Systems linked to OS Group {{ os.osgroup }}

{% for repo in os.osgroup.os_set.select_related %} {% endfor %}
OS Name
{{ repo }}

{{ os }} Repositories

{% gen_table os.osgroup.repos.select_related %}
{% endblock %}