I have a lot of content that is generated by the admins of a site; I end up adding the "|safe}}" to almost every single template variable. This is annoying.
Can I automatically mark every variable safe, and instead opt to use escape when necessary.
|
I have a lot of content that is generated by the admins of a site; I end up adding the "|safe}}" to almost every single template variable. This is annoying. Can I automatically mark every variable safe, and instead opt to use escape when necessary. |
|||
|
|
|
Can be done by using Django templates' autoescape to determine auto-escaping inside the block. As outlined in the section How to turn it off on the Django book Chapter 9 (look for the text in the section Automatic HTML Escaping):
This per-site way is to have a base template (the template all templates inherit from) which simply specifies
As @ChrisPratt has commented:
|
|||||||||||
|