{% for product in products %}
Catalogue Code: {{ product.sku | uppercase }}
£{{ product.price | money }}
{% if product.was_price and product.was_price != "0" and product.was_price != "" %}
Was
{{product.was_price | money }}
{% endif %}
{% if product.was_price and product.was_price != "0" and product.was_price != "" %}
Save £{{ product.was_price - product.price | money }}
{% if product.list_price >= product.was_price %}
RRP £{{ product.list_price | money }}
{% endif %}
{% endif %}
{% if product.was_price == 0 or product.was_price == "0" %}
{% if product.price < product.list_price %}
Save £{{ product.list_price - product.price | money }}
RRP £{{ product.list_price | money }}
{% endif %}
{% endif %}
{% endfor %}