{% extends 'Layout/product_layout.html' %} {% load ecom_tags %} {% block content %}
{{page.title}}
{{total_products|length}} products

{% for blog in total_products %}
{% if blog.prRec %}

{{blog.prRec}}

{% elif blog.get_parent.specific.prRec %}

{{blog.get_parent.specific.prRec}}

{% endif %}
{{blog.title}}
{% if blog.specific.get_siblings.live.count > 1 %}
{% for var in blog.specific.get_siblings.live %} {% endfor %}
{% endif %} {{blog.specific.customTitle|safe}} {% if blog.specific.prodRating %}
{% endif %} {% if blog.specific.prodDealPrice or blog.specific.prodMRP %}
{% if blog.specific.prodDealPrice %} {{ settings.core.CurrencySettings.icon|safe }}

{{blog.specific.prodDealPrice}}

{% endif %} {% if blog.specific.prodMRP %}

M.R.P:   {{blog.specific.prodMRP}}

{% endif %}
{% else %}

Currently unavailable.

{% endif %}
{% if blog.specific.get_buy_now %} {% endif %}
{% endfor %}
{% endblock content %}