Posts by rafaelxy • 139 points
1 post
-
13
votes3
answers278
viewsA: How to prevent Django from finding Ids in the template?
You can disable locating in only one value: {% load l10n %} {{ value|unlocalize }} Or you can disable it at some point in the template: {% load l10n %} {% localize off %} {{ value }} {% endlocalize…