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

Bounty Board

Seller/Buyer Marketplace for Buying Cards

{% if user.is_authenticated and user.seller_profile %}
+ Post Bounty
{% endif %}
{% if bounties %}
{% for bounty in bounties %}
{% if bounty.card.image_url %} {{ bounty.card.name }} {% else %}
📝
{% endif %}

Buying For

${{ bounty.target_price }}

Needed

{{ bounty.quantity_wanted }}

{{ bounty.description|default:"No details." }}

View Details
{% endfor %}
{% else %}

No active bounties at the moment.

{% if user.is_authenticated and user.seller_profile %} Be the first to post one! {% endif %}
{% endif %}
{% endblock %}