{% if !buyer_contacts.is_empty() %}

Your Buyers ({{ total_buyer_contacts }})

Buyers who opted to share their email with you at purchase time.

{% for c in buyer_contacts %} {% endfor %}
Username Email Purchases Total Spent Last Purchase
{{ c.username }} {{ c.email }} {{ c.total_purchases }} {{ c.total_spent }} {{ c.last_purchase }}
{% endif %} {% if shared_creators.is_empty() && buyer_contacts.is_empty() %}

No contacts yet.

{% endif %} {% if !shared_creators.is_empty() %}

Shared With

You've shared your email with these creators. You can revoke sharing at any time.

{% for creator in shared_creators %} {% endfor %}
Creator
{% if let Some(dn) = creator.display_name %}{{ dn }}{% else %}{{ creator.username }}{% endif %}
{% endif %}