{% extends 'base.html' %} {% block title %}Trade Offer Detail{% endblock title %} {% block content %}

Trade Offer Details

Hash: {{ object.hash }}
Initiated By: {{ object.initiated_by }}
Cards You Have (Offer): {% for through in object.trade_offer_have_cards.all %} {{ through.card.name }} x{{ through.quantity }}{% if not forloop.last %}, {% endif %} {% endfor %}
Cards You Want: {% for through in object.trade_offer_want_cards.all %} {{ through.card.name }} x{{ through.quantity }}{% if not forloop.last %}, {% endif %} {% endfor %}
Created At: {{ object.created_at|date:"M d, Y H:i" }}
Updated At: {{ object.updated_at|date:"M d, Y H:i" }}
Status: {% if object.is_closed %}Closed{% else %}Open{% endif %}

Acceptances

{% if acceptances %} {% else %}

No acceptances yet.

{% endif %} {% if acceptance_form %}

Accept This Offer

{% csrf_token %} {{ acceptance_form.as_p }}
{% endif %}
{% if is_initiator %} Delete/Close Trade Offer {% endif %} Back to Trade Offers
{% endblock content %}