Welcome, {{ fullname }}

Manage your purchases, profile, and comments from one place.

Username: {{ username }}

User ID: {{ profile_id }}

{% if username == 'admin' %}

Admin access: View flag

{% endif %}

Your purchases

{% if purchases %}
{% for item in purchases %}

{{ item.name }}

Price: ${{ "%.2f"|format(item.price) }} · Qty: {{ item.quantity }} · Purchased: {{ item.created_at }}

Comments {% if item.comments %} {% for comment in item.comments %}
{{ comment|safe }}
{% endfor %} {% else %}
No comments yet.
{% endif %}
{% endfor %}
{% else %}

You have not bought anything yet. Visit the store to find products you love.

{% endif %}