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

{{ detail[0] }}

{{ detail[1] }}

Current Bid Price: (Current Bid Price) USD
Buyout Price: {{ detail[8] }} USD
Minimum Price: {{ detail[7] }} USD
Creator: {{ detail[3] }}
Current Owner: {{ own_uname }}
Auction End Date: {{ detail[9] }}
{{ form.hidden_tag() }} {{ form.price(placeholder="Your Starting Bid Price") }} {{ form.submit() }}

Bid History(order by desc)

{% for bid in ibh %} {% endfor %}
Bid Date Bid Price
{{ bid.bid_date }} {{ bid.bid_price }}

{% endblock %}