{% extends 'dashboard/base.html' %} {% load humanize %} {% block title %}Products{% endblock %} {% block page_title %}Products{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
| Product | Category | Price | Stock | Flags | Active | Actions |
|---|---|---|---|---|---|---|
|
{% if product.image %}
{{ 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 %}
|
||
No products foundTry adjusting filters or add a new product. | ||||||