{% load i18n %}
{% comment %}
Address-group memberships: collapsed summary when many groups; stacked pills otherwise.
{% endcomment %}
{% if node.cell_groups %}
{% if node.cell_groups_collapsed %}
ADDRESS_GROUP
{% blocktrans count counter=node.collapsed_group_count %}{{ counter }} group{% plural %}{{ counter }} groups{% endblocktrans %}
ADDRESS_GROUP
{% for grp in node.cell_groups %}
{% if not grp.is_none %}
{{ grp.name }}
{% if grp.status %}{% include "netbox_nsm/inc/ipa_nsm_object_status_icon.html" with status=grp.status %}{% endif %}
{% endif %}
{% endfor %}
{% else %}
ADDRESS_GROUP
{% for grp in node.cell_groups %}
{% if grp.is_none %}
{{ grp.name }}
{% else %}
{{ grp.name }}
{% if grp.status %}{% include "netbox_nsm/inc/ipa_nsm_object_status_icon.html" with status=grp.status %}{% endif %}
{% endif %}
{% endfor %}
{% endif %}
{% endif %}