{% extends "edit_object.html" %} {% load url from future %} {% load i18n %} {% block title %}{{ block.super }}{% endblock %} {% block header %}{{ 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.servicegroup_name %} {% include "bootstrap_field.html" with field=form.alias %}
{% trans "Following is a list of all servicegroups that" %} {{ my_object.servicegroup_name }} {% trans "is a member of." %}

{% if effective_memberof %}

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

{% endif %}
{% trans 'If you want to add specific services to this servicegroup. Use the advanced field or open that specific service and edit the "servicegroups" attribute.' %}
{% include "bootstrap_field.html" with field=form.servicegroup_members %}
{% trans "Effective Members of this group" %} {% trans 'Group membership can be defined in multiple ways, for example by editing the service and editing the "servicegroups" attribute. For your convenience, here is a list of all services in this servicegroup.' %}

{% if effective_services %}

{% for i in effective_services %} {% endfor %}

{% endif %}

All Attributes

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

{% trans "Object not found" %}

{% endif %} {% endblock content %}