{% load form_helpers %} {% load i18n %} {% load custom_object_utils %} {% load cot_form %} {% with sub_names=group_info.0 field_label=group_info.1 %}
{{ field_label }}
{% if sub_names|length > 1 %}
{% for sub_name in sub_names %} {% with sub_field=form|getfield:sub_name tab_id=sub_name|slugify %}
{% include "netbox_custom_objects/inc/render_field_widget_only.html" with field=sub_field %}
{% endwith %} {% endfor %}
{% else %} {% with sub_field=form|getfield:sub_names.0 %} {% include "netbox_custom_objects/inc/render_field_widget_only.html" with field=sub_field %} {% endwith %} {% endif %}
{% endwith %}