{% load i18n %}
{% comment %}Address group column: row object (when group) + comma-separated membership links (no pills).{% endcomment %}
{% if node.cell_pill_group and node.name and node.url %}
{{ node.name }}
{% if node.status %}{% include "netbox_nsm/inc/ipa_nsm_object_status_icon.html" with status=node.status %}{% endif %}
{% if node.cell_groups %}, {% endif %}
{% elif not node.cell_groups %}
—
{% endif %}
{% if node.cell_groups %}
{% if node.cell_groups_collapsed %}
{% blocktrans count counter=node.collapsed_group_count %}{{ counter }} group{% plural %}{{ counter }} groups{% endblocktrans %}
{% for grp in node.cell_groups %}
{% if not grp.is_none %}
{% if not forloop.first %}, {% endif %}
{{ grp.name }}
{% if grp.status %}{% include "netbox_nsm/inc/ipa_nsm_object_status_icon.html" with status=grp.status %}{% endif %}
{% endif %}
{% endfor %}
{% else %}
{% for grp in node.cell_groups %}
{% if not forloop.first %}, {% endif %}
{% 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 %}