{% extends 'base.html' %} {% block title %}Account{% endblock %} {% block main %}

{{ user["name"] }}


{{ user["email"] }}


Warehouse Address:
{{ user["hno"] }}
{{ user["location"] }}
{{ user["state"]}}, {{ user["country"] }}


EBMS verified supplier




Your Products


{% if products == [] %}

You haven't supplied any products yet.

{% else %} {% for item in products %} {% endfor %}
ID Item Price Quantity
{{item['productID']}} {{item['name']}} {{item['price']}} {{item['quantity']}}
{% endif %}

Sales Statistics


{% if sales == [] %}

You haven't sold any products yet.

{% else %} {% for item in sales %} {% endfor %}
Item Quantity Sold Revenue
{{item['product_name']}} {{item['total_quantity_sold']}} {{item['total_revenue']}}
{% endif %} {% endblock %}