{% endif %}
{# Other Attributes #}
{% for key, data in duplicate.data %}
{% if data and key not in config.duplicates.fieldsInvolvedInDetection %}
{{ key }}
{% if data is iterable %}
{% for subkey, subdata in data %}
{{ subkey }} : {{ subdata|json_encode }}
{% endfor %}
{% else %}
{{ data }}
{% endif %}