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

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

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

Recent Auctions

{% for auction in items %}
...
{{ auction.title }}

{{ auction.description }}

Starting Bid: ${{ auction.starting_bid }}

{% endfor %}
{% endblock %}