With Django, is it possible for users to submit HTML in a form field, save it and then display the HTML in a template?
For example, a user adds a link to a text field, which should then appear as a tag in the rest of the text.
The user enters something like:
this is a site called <a href="http://stackoverflow.com">SO</a>.
The SO link will be a link instead of rendering as text.
Emile source share