[Fixed]-Getting a css ribbon to appear on selected images only from a django database

1👍

You should first check whether product.ribbon is not None before rendering the divs. Try this:

{% if product.duration %}<div class="ribbon-wrapper-orange"><div class="ribbon-orange">{{ product.duration }}</div></div>{% endif %}

Leave a comment