My settings.py has USE_THOUSAND_SEPARATOR = True because that's generally what I want in my templates.
However, what can I do to prevent this default behaviour for only one of my variables in a template?
{{ project_id }} currently prints "9,324", but I want it to display "9324" instead.
Cheers!