{% extends 'theme/base.html' %} {% load static %} {% block title %}AL WASAY{% endblock %} {% block content %}
Products Hero

Our Spare Parts

Quality auto spare parts for all your needs

Showing {{ products.paginator.count }} product{{ products.paginator.count|pluralize }}

{% if products %}
{% for product in products %}
{% if product.main_image %} {{ product.name }} {% else %}
{% endif %} {% if product.is_on_sale and user.is_authenticated %} -{{ product.discount_percentage }}% {% endif %} {% if not product.is_in_stock %} Out of Stock {% endif %}
{% if product.brand %}

{{ product.brand.name }}

{% endif %}

{{ product.name }}

SKU: {{ product.sku }}

{% if user.is_authenticated %}
{% if product.is_on_sale %} AED {{ product.sale_price }} AED {{ product.price }} {% else %} AED {{ product.price }} {% endif %}
{% else %} Login to see price {% endif %}
{% endfor %}
{% if products.has_other_pages %}
{% if products.has_previous %} Previous {% endif %} Page {{ products.number }} of {{ products.paginator.num_pages }} {% if products.has_next %} Next {% endif %}
{% endif %} {% else %}

No products found

Try adjusting your search or filter criteria

View All Products
{% endif %}
{% endblock %}