{% extends 'dashboard/base.html' %} {% load humanize %} {% block title %}Products{% endblock %} {% block page_title %}Products{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% if q or cat_filter or status_filter %} Clear {% endif %}
{% for product in products %} {% empty %} {% endfor %}
Product Category Price Stock Flags Active Actions
{% if product.image %} {% else %}{% endif %}
{{ product.name|truncatechars:32 }}
{{ product.slug }}
{{ product.category.name }}
₦{{ product.effective_price|floatformat:0|intcomma }}
{% if product.discount_price %}
₦{{ product.price|floatformat:0|intcomma }}
{% endif %}
{{ product.stock }} {% if product.stock == 0 %}
Out of stock
{% elif product.stock <= 5 %}
Low stock
{% endif %}
{% if product.is_new_arrival %}New{% endif %} {% if product.is_featured %}Featured{% endif %} {% if product.is_best_seller%}Bestseller{% endif %}
{% csrf_token %}

No products found

Try adjusting filters or add a new product.

{% if products.has_other_pages %} {% endif %}
{% endblock %} {% block extra_js %} {% endblock %}