Reputation: 3554
Hi. In my template file, I'm getting the value of field like
{{product.description}}
It gives me the br
tags with in the description. How can I replace them? Actually I have migrated the products from the magento to django.
Upvotes: 0
Views: 118
Reputation: 2535
You could use the django built in template tag 'safe':
{{product.description|safe}}
Upvotes: 2