{% extends "edit_object.html" %} {% block title %}{{ block.super }}{% endblock %} {% block head %}{{ block.super }} {% endblock %} {% block footer %}{{ block.super }}{% endblock %} {% block sidebar %}{{ block.super }}{% endblock %} {% block content %} {% if my_object %}
{% csrf_token %}
{% include "bootstrap_field.html" with field=form.hostgroup_name %} {% include "bootstrap_field.html" with field=form.alias %}
Following is a list of all hostgroups that {{ my_object.hostgroup_name }} is a member of.

{% if effective_memberof %}

{% for group in effective_memberof %} {% endfor %}

{% endif %}
{% include "bootstrap_field.html" with field=form.members %} {% include "bootstrap_field.html" with field=form.hostgroup_members %}
Effective Members of this group Group membership can be defined in multiple ways, for example by editing the host and editing the "hostgroups" attribute. For your convenience, here is a list of all hosts for this hostgroup.

{% if effective_hosts %}

{% for i in effective_hosts %} {% endfor %}

{% endif %}

All Attributes

{% csrf_token %} {% include "bootstrap_fields.html" with fields=advanced_form %}
{% else %}

Object not found

{% endif %} {% endblock content %}