{% if request.user == sale.bid.bidder %}

Congratulations {{ sale.bid.bidder.username }},

Your funds have been confirmed!

The seller has been notified of the proof of payment and has been provided with a link to your shipping address. Please make sure it is correct and will result in successful package delivery. You can edit the address here: Edit Shipping Address

Address 1: {{ shipping_address.address1 }}

Address 2: {{ shipping_address.address2 }}

City: {{ shipping_address.city }}

State: {{ shipping_address.state }}

Country: {{ shipping_address.country }}

Zip: {{ shipping_address.zip }}

{% elif request.user == sale.item.owner %}

Congratulations {{ sale.item.owner.username }},

The bidder for your item has sent the proper amount of funds to the escrow wallet address. You may now proceed with shipping the item they agreed to purchase from you. You may need to wait some time for the buyer to provide their location:

{% if shipping_address %}

Address 1: {{ shipping_address.address1 }}

Address 2: {{ shipping_address.address2 }}

City: {{ shipping_address.city }}

State: {{ shipping_address.state }}

Country: {{ shipping_address.country }}

Zip: {{ shipping_address.zip }}


If you have shipped the item, and only if you have shipped the item, please confirm by clicking this button:

Confirm Item Shipped

{% else %}

The buyer has not provided a shipping address yet - check back later!

{% endif %} {% endif %}