{% extends 'base.html' %} {% block content %}

Bids

{% if bids %} {% for bid in bids %} {% endfor %}
Bid ID Bid Date Item Name Bid Price (XMR) Accepted Actions
#{{ bid.id }} {{ bid.bid_date | date:"d M, Y H:i:s" }} {{ bid.item.name}} {{ bid.bid_price_xmr }} {{ bid.accepted }} {% if bid.accepted %} {% for sale in sales %} {% if sale.bid.id == bid.id %} View Sale {% endif %} {% endfor %} {% else %} Edit Delete {% endif %}
{% else %}

No bids have been made. Get out there!

{% endif %}
{% if bids.has_other_pages %} {% endif %} {% endblock %}