{% extends "swaps/base.html" %} {% load i18n %} {% load avatar_tags %} {% load account_tags %} {% load humanize %} {% load pagination_tags %} {% load tagging_tags %} {% load wiki_tags %} {% load markup %} {% load restructuredtext %} {% load threadedcommentstags %} {% load theme_tags %} {% block head_title %}{% blocktrans %}All Open Offers{% endblocktrans %}{% endblock %} {% block body %}

Toggle What is this?

Toggle How does this work?

{% trans "All Open Offers" %}

{% if offers %} {% autopaginate offers %} {% for offer in offers %} {% endfor %}

{{ offer.short_description }}

Offering: {{ offer.offering|truncatewords:15 }}

Want: {{ offer.want|truncatewords:15 }}

{% ifnotequal user offer.offerer %}
{% endifnotequal %}
{% avatar offer.offerer 40 %}

Offered by:
{% user_display offer.offerer %} on {{ offer.offered_time|date }}

{# @@@ I've seen this multiple places -- should be inclusion tag #}
{% silk "tag_blue" %} {% tags_for_object offer as tags %} {% for tag in tags %} {{ tag }} {% endfor %}
{% paginate %} {% else %}

No open offers.

{% endif %} {% endblock %} {% block extra_body %} {% endblock %}