{% extends 'base.html' %}
By {{ supplier["name"] }}
No reviews yet
{% else %}{{ rating["stars"] }} / 5 ({{ rating["reviews"] }} Review(s))
{% endif %} {% if session.get("user_type") == "customer" %}Availability: {{ "In stock" if product["quantity"] > 0 else "Out of Stock" }}
{% elif session.get("user_type") == "supplier" and session.get("user_id") == product["supplierID"] %}In Stock: {{ product["quantity"] }}
{% elif session.get("user_type") == "admin" %}In Stock: {{ product["quantity"] }}
{% else %}Availability: {{ "In stock" if product["quantity"] > 0 else "Out of Stock" }}
{% endif %}Price: $ {{ product["price"] }}
{{ (product["product_description"] + " ") * 2 }}
{% if session.get("user_type") == "customer" %}In Cart: {{ in_cart }}
{% else %}{{ review["rating"] }} / 5
{{ review["review_date"] }}
{% if review["content"] != "" %}{{ review["content"][:250] }} ...
{% endif %}You ordered this product on {{ prev["order_date"] }}. Rate the product out of 5!
{% endif %} {% if more != [] %}