{% extends "forms-side.html" %}
{% load forms common %}
{% load url from future %}
{% block extrahead %}
{{ form.media }}
{% endblock %}
{% block title %}OS Group {{ osgroup }} {% endblock %}
{% block content_title %}OS Group Information{% endblock %}
{% block breadcrumbs %}{{ block.super }} › Operating Systems › Groups › {{ osgroup }} {% endblock %}
{% block content %}
Operating Systems linked to OS Group {{ osgroup }}
OS Name |
{% for repo in osgroup.os_set.select_related %}
{{ repo }} |
{% endfor %}
{% if user.is_authenticated %}
{% if perms.is_admin %}
{% endif %}
{% endif %}
{% if osgroup.repos.count == 0 %}
{{ osgroup }} has no Repositories
{% else %}
{{ osgroup }} Repositories
{% gen_table osgroup.repos.select_related %}
{% endif %}
{% if user.is_authenticated %}
{% if perms.is_admin %}
Modify {{ osgroup }} repos
{% endif %}
{% endif %}
{% endblock %}