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

My ProfileAccount Settings

{% if current_user.profile_picture and current_user.profile_picture != 'default.png' %} Profile Picture {% else %}
{% endif %}
{{ form.hidden_tag() }}
{{ form.full_name.label }} {% if form.full_name.errors %} {{ form.full_name(class="form-control is-invalid", placeholder="Enter your full name") }}
{% for error in form.full_name.errors %} {{ error }}
{% endfor %}
{% else %} {{ form.full_name(class="form-control", placeholder="Enter your full name") }} {% endif %}
{{ form.email.label }} {% if form.email.errors %} {{ form.email(class="form-control is-invalid", placeholder="you@example.com") }}
{% for error in form.email.errors %} {{ error }}
{% endfor %}
{% else %} {{ form.email(class="form-control", placeholder="you@example.com") }} {% endif %}
{{ form.profile_picture.label }} {{ form.profile_picture(class="form-control-file") }} {% if form.profile_picture.errors %}
{% for error in form.profile_picture.errors %} {{ error }}
{% endfor %}
{% endif %} Accepted formats: jpg, jpeg, png, gif, webp
{{ form.submit(class="btn") }}

Order HistoryYour Past Orders

{% if orders %}
{% for order in orders %}
Order #{{ order.id }} {{ order.created_at.strftime('%B %d, %Y at %I:%M %p') }}
{{ order.status|capitalize }}
{% for item in order.items %}
{{ item.product_name }} x {{ item.quantity }} N {{ "%.2f"|format(item.price * item.quantity) }}
{% endfor %}
Total: N {{ "%.2f"|format(order.total_amount) }}
{% endfor %}
{% else %}

You haven't placed any orders yet.

Start Shopping
{% endif %}
{% endblock content %}