{% extends "base.html" %} {% block title %}My Items — GoldBuy{% endblock %} {% block content %}

My items

Items you have submitted. We call you back on the number you gave for each item.

{% if not listings %}

You have not submitted any items yet. Sell your first item.

{% endif %} {% for l in listings %}

{{ l['item_title'] }}

{{ l['created_at'] }}
{% for filename in photos.get(l['id'], []) %} Photo of {{ l['item_title'] }} {% endfor %}

Asking price: KSh {{ l['price'] }}

Location: {{ l['location'] }}

Details:
{{ l['details'] }}

{{ USER_STATUS_LABELS[l['status']] }}

{% endfor %} {% endblock %}