{% 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 %}