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

Products

View Cart
{% for product in products %}
{% if product.image %} {{ product.name }} {% else %}
📷
{% endif %}
{{ product.name }}

{{ product.description }}

${{ product.price }} {% if product.stock > 0 %} In Stock: {{ product.stock }} {% else %} Out of Stock {% endif %}
{% csrf_token %}
{% empty %}

No products available.

{% endfor %}
{% endblock %}