{% extends "client_base.html" %} {% load static %} {% block title %} {% if page_title %} {{page_title}} {% else %} Products {% endif %} {% endblock %} {% block content %}
{% if is_popular == True %}

Most Popular

{% endif %}
{% if products %} {% for item in products %}
{% if item.cover_product_attribute.final_discount.total_discount%} {{ item.cover_product_attribute.final_discount.total_discount_percentage }}% OFF {% endif %} {% comment %} {% endcomment %}
{{ item.product_name }} {% if item.cover_product_attribute.final_discount.total_discount %}
৳ {{ item.cover_product_attribute.product_final_price }} ৳ {{ item.cover_product_attribute.regular_price }}
{% else %}
৳ {{ item.cover_product_attribute.regular_price }}
{% endif %}

{% if item.product_stock_status.flag %} In stock: {{item.product_stock_status.stock_qty}} {% else %} Out of stock {% endif %}

{% comment %} {% if cover.stock > 0 and cover.stock >= item.moq %} Buy now {% else %} Buy now {% endif %} {% endcomment %} Buy now
{% endfor %} {% else %}
Products not found
{% endif %}
{% if products.paginator.count > 0 %}

Showing {{ products.start_index }} to {{ products.end_index }} of {{ products.paginator.count }} results

{% if products.paginator.num_pages > 1 %}
    {% if products.has_previous %}
  • «
  • {% else %}
  • «
  • {% endif %} {% for num in products.paginator.page_range %} {% if num >= products.number|add:'-2' and num <= products.number|add:'2' %} {% if products.number == num %}
  • {{ num }}
  • {% else %}
  • {{ num }}
  • {% endif %} {% endif %} {% endfor %} {% if products.has_next %}
  • »
  • {% else %}
  • »
  • {% endif %}
{% endif %}
{% endif %}
{% endblock %} {% block JS %} {% endblock %}