67
edits
| Line 32: | Line 32: | ||
Solution: Use Django [https://docs.djangoproject.com/en/dev/ref/templates/builtins/#safe |safe] | Solution: Use Django [https://docs.djangoproject.com/en/dev/ref/templates/builtins/#safe |safe] | ||
Problem: After using bleach, the safe tags show up "<b>" instead of being rendered, you have to add a "|safe" to the template: {{ richtext.comment|safe }} | Problem: After using bleach, the safe tags show up "<b>should be bolded</b>" instead of being rendered, you have to add a "|safe" to the template: {{ richtext.comment|safe }} | ||
edits