{% extends "edit_object.html" %} {% 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.contactgroup_name %} {% include "bootstrap_field.html" with field=form.alias %}
{% blocktrans with name=my_object.contactgroup_name %} Following is a list of all contactgroups that {{ name }} is a member of. Notifications sent to these groups will also go to {{ name }}. {% endblocktrans %}

{% 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.contactgroup_members %}
Effective Members of this group {% trans 'Group membership can be defined in multiple ways, for example by editing the contact and editing the "contactgroups" attribute. For your convenience, here is a list of all contacts for this contactgroup.' %}

{% if effective_contacts %}

{% for i in effective_contacts %} {% endfor %}

{% endif %}

All Attributes

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

{% trans "Object not found" %}

{% endif %} {% endblock content %}