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

{% if bounty.card %} Wanted: {{ bounty.card.name }} {% else %} Wanted: {{ bounty.title }} {% endif %}

Posted by {{ bounty.seller.store_name }} on {{ bounty.created_at|date:"M d, Y" }}

${{ bounty.target_price }} Target Price / item

Details

{{ bounty.description|default:"No additional details provided."|linebreaks }}

Quantity Wanted {{ bounty.quantity_wanted }}
{% if is_seller %}

Offers Received ({{ offers|length }})

{% if offers %}
{% for offer in offers %}

${{ offer.price }} from {{ offer.buyer.user.username }}

{{ offer.description|default:"No note included." }}

{{ offer.created_at|date:"M d, H:i" }}

{{ offer.get_status_display }} {% if offer.status == 'pending' %} {% endif %}
{% endfor %}
{% else %}

No offers yet.

{% endif %}
{% elif is_buyer %}
{% if user_offer %}

Your Offer

${{ user_offer.price }} {{ user_offer.get_status_display }}

You have already submitted an offer for this bounty.

{% else %}

Make an Offer

{% csrf_token %}
{{ offer_form.price }}
{{ offer_form.description }}
{% endif %}
{% endif %}
{% endblock %}