Hi,
I run into the same issue awhile back. It's on my list to make it more
clean and use a templatetag
instead of this Hack.
But here is a quick hack to show the full price strike through and the
sale price
"""
<p>
<span class="product-titles">Price:</span>
{% if product.get_qty_price_list.1.1 %}
<span style="text-decoration: line-
through;">{{ product.get_qty_price_list.0.1|currency }}</span>
 
<span style="color:red;">{{ product|discount_price:sale|currency }}
</span>
{% else %}
{{ product|discount_price:sale|currency }}
{% endif %}
</p>
"""
Hope it helps
lzantal