{% for member in contactGroup.members %}
{% with member.name as title %}
{% with member.emailLink|safe as value %}
{% include "contactgroup_memberrow.html" %}
{% endwith %}
{% endwith %}
{% endfor %}
{% for field in contactGroup.additionalFields %}
{% with field.title as title %}
{% with field.value as value %}
{% include "contactgroup_additionalfieldrow.html" %}
{% endwith %}
{% endwith %}
{% endfor %}