{% extends "base.html" %} {% load common bootstrap3 %} {% block extrahead %} {{ repos_form.media }} {% endblock %} {% block page_title %}OS Group - {{ osgroup }} {% endblock %} {% block breadcrumbs %} {{ block.super }}
  • Operating Systems
  • OS Groups
  • {{ osgroup }}
  • {% endblock %} {% block content_title %} OS Group - {{ osgroup }}{% endblock %} {% block content %}
    Name{{ osgroup }}
    Operating Systems in this OS Group{{ osgroup.os_set.select_related.count }}
    {% if user.is_authenticated and perms.is_admin %} {% bootstrap_icon "trash" %} Delete this OS Group {% endif %}
    {% for repo in osgroup.os_set.select_related %} {% endfor %}
    {{ repo }}
    {% if osgroup.repos.count == 0 %} {{ osgroup }} has no Repositories
    {% else %} {% gen_table osgroup.repos.select_related %} {% endif %} {% if user.is_authenticated and perms.is_admin %}
    {% csrf_token %} {% bootstrap_form repos_form size='small' %}
    {% endif %}
    {% endblock %}