{% extends "listings/base.html" %} {% load i18n %} {% load pagination_tags %} {% load shorttimesince_tag %} {% block head_title %}{% blocktrans %}Your listings{% endblocktrans %}{% endblock %} {% block body %} {% if is_me %}

{% trans "Your listings" %}

{% else %}

{% trans "Watched listings" %}

{% endif %} {% if listings %} {% autopaginate listings %} {% for listing in listings %} {% endfor %}
Description Updated Offer Want State
{{ listing.title }} {{ listing.time|shorttimesince }} {{ listing.description|urlize }} {{ listing.want|urlize }} {{ listing.get_state_display }}
{% paginate %} {% else %} No listings yet. {% endif %} {% if watched %} {% for w in watched %} {{w.listing}} {% endfor %} {% else %} {% endif %} {% endblock %}