{% extends 'base.html' %} {% load static %} {% block title %}My Trades{% endblock title %} {% block content %}
Create New Offer
{% include "trades/_friend_code_select.html" with friend_codes=friend_codes selected_friend_code=selected_friend_code field_name="friend_code" label="" %}

Waiting for Your Response

{% if trade_acceptances_waiting_paginated.object_list %} {% include "trades/_trade_offer_list.html" with offers=trade_acceptances_waiting_paginated %}
{% if trade_acceptances_waiting_paginated.has_previous %} Previous {% else %} {% endif %} Page {{ trade_acceptances_waiting_paginated.number }} of {{ trade_acceptances_waiting_paginated.paginator.num_pages }} {% if trade_acceptances_waiting_paginated.has_next %} Next {% else %} {% endif %}
{% else %}

None at this time.

{% endif %}

Waiting for Their Response

{% if other_party_trade_acceptances_paginated.object_list %} {% include "trades/_trade_offer_list.html" with offers=other_party_trade_acceptances_paginated %}
{% if other_party_trade_acceptances_paginated.has_previous %} Previous {% else %} {% endif %} Page {{ other_party_trade_acceptances_paginated.number }} of {{ other_party_trade_acceptances_paginated.paginator.num_pages }} {% if other_party_trade_acceptances_paginated.has_next %} Next {% else %} {% endif %}
{% else %}

None at this time.

{% endif %}

My Trade Offers

{% if my_trade_offers_paginated.object_list %} {% include "trades/_trade_offer_list.html" with offers=my_trade_offers_paginated %}
{% if my_trade_offers_paginated.has_previous %} Previous {% else %} {% endif %} Page {{ my_trade_offers_paginated.number }} of {{ my_trade_offers_paginated.paginator.num_pages }} {% if my_trade_offers_paginated.has_next %} Next {% else %} {% endif %}
{% else %}

No trade offers found.

{% endif %}
{% endblock content %}