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

{% block title %}{{user.email}}'s Profile Page{% endblock %}

{% endblock %} {% block content %}
{{ user.email }}

Recent Auctions

{% for auction in items %}
No image available
{{ auction.title }}

{{ auction.description }}

Starting Bid: {{ auction.starting_bid|localcurrency }}

Current Price: {{ auction.current_price|localcurrency }}

Starting Time: {{ auction.created_at }}

Closing Time: {{ auction.closes_at }}

{% endfor %}
{% endblock %}