{% if 'org' in vcard_info and vcard_info['org'] %}
{{vcard_info['org']}}
{% endif %}
{% if 'note' in vcard_info and vcard_info['note'] %}
{{vcard_info['note']}}
{% endif %}
{% if 'email' in vcard_info and vcard_info['email'] %}
✉️
{% endif %}
{% if 'impp' in vcard_info and vcard_info['impp'] %}
💬️
{% endif %}
💡️
{% if 'url' in vcard_info and vcard_info['url'] %}
🔗️
{% endif %}
{% for category in vcard_info['extras'] %}
{{category.title()}}
{% for i in vcard_info['extras'][category] %}
{{i['label']}}
{% endfor %}
{% endfor %}