{% extends 'base.html' %} {% block title %}Trade Offer Detail{% endblock title %} {% block content %}
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 %}
Accepted By: {{ acceptance.accepted_by }}
Requested Card: {{ acceptance.requested_card.name }}
Offered Card: {{ acceptance.offered_card.name }}
State: {{ acceptance.get_state_display }}
No acceptances yet.
{% endif %} {% if acceptance_form %}