{% 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 %}