{% extends "dashboard/base.html" %} {% load humanize %} {% block page_title %}Products{% endblock %} {% block header_actions %}Add Product{% endblock %} {% block dashboard_content %} {% if products %}
{% for product in products %}
{% if product.primary_image %} {{ product.name }} {% else %}
No image
{% endif %} {% if not product.is_active %}Inactive{% endif %}

{{ product.name }}

GHS {{ product.base_price|floatformat:2 }}

{{ product.images.count }} image{{ product.images.count|pluralize }}

Edit
{% csrf_token %}
{% endfor %}
{% else %}

No products yet

Add your first product to start building your catalog.

Add Product
{% endif %} {% endblock %}