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

{% trans "Your dead Swaps" %}

{% if swaps %} {% autopaginate swaps %} {% for swap in swaps %} {% endfor %}
Time of death Proposing Offer Offered By Responding Offer Offered By State Conflict
{{ swap.killed_time|shorttimesince }} {{ swap.proposing_offer }} {% user_display swap.proposing_offer.offerer %} {{ swap.responding_offer }} {% user_display swap.responding_offer.offerer %} {{ swap.get_state_display }} {% if swap.conflicted_by %} {{ swap.conflicted_by }} {% else %}   {% endif %}
{% paginate %} {% else %} No dead swaps yet. {% endif %} {% endblock %}