{% extends "swaps/base.html" %} {% load i18n %} {% load humanize %} {% load account_tags %} {% load pagination_tags %} {% load tagging_tags %} {% load wakawaka_tags %} {% load markup %} {% load restructuredtext %} {% load threadedcommentstags %} {% load shorttimesince_tag %} {% block head_title %}{% blocktrans %}Your accepted Swaps{% endblocktrans %}{% endblock %} {% block body %}

{% trans "Your accepted Swaps" %}

{% if swaps %} {% autopaginate swaps %} {% for swap in swaps %} {% endfor %}
Accepted Time Proposing Offer Offered By Responding Offer Offered By State
{{ swap.accepted_time|shorttimesince }} {{ swap.proposing_offer }} {% user_display swap.proposing_offer.offerer %} {{ swap.responding_offer }} {% user_display swap.responding_offer.offerer %} {{ swap.get_state_display }}
{% paginate %} {% else %} No accepted swaps yet. {% endif %} {% endblock %}