Internationalization tags and filters

Django provides template tags and filters to control each aspect of internationalization in templates. They allow for granular control of translations, formatting, and time zone conversions.

i18n

This library allows specifying translatable text in templates. To enable it, set USE_I18N to True, then load it with {% load i18n %}.

l10n

This library provides control over the localization of values in templates. You only need to load the library using {% load l10n %}, but you'll often set USE_L10N to True so that localization is active by default.

tz

This library provides control over time zone conversions in templates. Like l10n, you only need to load the library using {% load tz %}, but you'll usually also set USE_TZ to True so that conversion to local time happens by default. See time-zones-in-templates.

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset