{% extends 'base.html' %} {% block header %}

{% block title %}View all items currently on auction {% endblock %}

{% endblock %} {% block content %} View items
{%for item in items %}
{{ item.title }}
{{ item.created_at }}

{{ item.description }}

{{ item.current_price|localcurrency}}
{% endfor %}
{% endblock %}