diff --git a/views/person.html b/views/person.html index 54d0f98..b830ce0 100644 --- a/views/person.html +++ b/views/person.html @@ -230,11 +230,15 @@ {% endif %} {% if Field.FieldType == "list" and Field.List.Multi %} + + {% set count = 1 %} {% for FieldValue in FieldValues %} {% if FieldValue.FieldID == Field.ID %} -
- — {{ FieldValue.ListItem.Value }} -
+ {% set count = count + 1 %} + {% if forloop.Last %} + + {% endif %} {% endif %} {% endfor %} {% endif %}