{% if product != None %} {% if user.id == product.sellerID %}
{% for category in categories %} {% if category.id == product.category %}
{{category.name}}
{% else %}
{{category.name}}
{% endif%} {% endfor %}
{% else %}
{{product.name}}
{{product.description}}
£{{product.cost}}
Earliest Delivery Friday 24th December
+£{{product.cost}} P&P
{% if product.quantityAvailable > 0 %}
In Stock
{{product.quantityAvailable}} Available
{% else %}
Out of Stock
{% endif %}
{% endif %} {% endif %}