Requires {% load l10n %}
Add {% load l10n %} near the top of any template that
uses |localize. Without it Django does not
know the name and raises TemplateSyntaxError.
Formats one value according to the active locale, whatever USE_L10N or a surrounding {% localize %} block has decided.
Template
{% load l10n %}
{{ value|localize }}
The single-value counterpart to the tag of the same name.
