| 1 |
<div id="tab-content" class="region pane"><h2 class="heading">Your Buyers ({{ count }})</h2><p class="text">Buyers who opted to share their email with you at purchase time.</p><div role="table" class="table"><div role="row" class="table-head"><span role="columnheader" class="table-heading col-Username cell-content cell-keeps">Username</span><span role="columnheader" class="table-heading col-Email cell-fill cell-keeps">Email</span><span role="columnheader" class="table-heading col-Purchases cell-content cell-drops-next">Purchases</span><span role="columnheader" class="table-heading col-Total-Spent cell-content cell-drops-next">Total Spent</span><span role="columnheader" class="table-heading col-Last-Purchase cell-content cell-drops-first">Last Purchase</span></div><{% for b in buyers %}div role="row" class="table-row" data-row><div class="cell col-Username cell-content cell-keeps"><a class="cell-link" data-act href="/u/{{ b.username }}" hx-get="/u/{{ b.username }}" hx-swap="outerMorph">{{ b.username }}</a></div><div class="cell col-Email cell-fill cell-keeps"><a class="cell-link" data-act href="mailto:{{ b.email }}" target="_blank" rel="noopener noreferrer">{{ b.email }}</a></div><div class="cell col-Purchases cell-content cell-drops-next cell-value">{{ b.purchases }}</div><div class="cell col-Total-Spent cell-content cell-drops-next cell-value">{{ b.spent }}</div><div class="cell col-Last-Purchase cell-content cell-drops-first cell-value">{{ b.last_purchase }}</div></div><{% endfor %}/div><h2 class="heading">Shared With</h2><p class="text">You've shared your email with these creators. You can revoke sharing at any time.</p><div role="table" class="table"><div role="row" class="table-head"><span role="columnheader" class="table-heading col-Creator cell-fill cell-keeps">Creator</span><span role="columnheader" class="table-heading col- cell-content cell-keeps"></span></div><{% for s in shared %}div role="row" class="table-row" data-row><div class="cell col-Creator cell-fill cell-keeps"><a class="cell-link" data-act href="/u/{{ s.username }}" hx-get="/u/{{ s.username }}" hx-swap="outerMorph">{{ s.name }}</a></div><div class="cell col- cell-content cell-keeps"><span class="cell-actions"><button type="button" class="button" data-act hx-delete="/library/tabs/contacts/revoke/{{ s.seller_id }}" hx-swap="outerMorph">Revoke</button></span></div></div><{% endfor %}/div><div class="anchored" id="tab-content-anchored" data-menu="anchored" hidden></div></div> |