[Answer]-Django – localized date and time

1👍

You have to configure you time zone in your Django Settings

Choices can be found Here

Check in your settings.py:

TIME_ZONE = 'America/Guayaquil'
USE_I18N = True
USE_L10N = True
USE_TZ = True
LANGUAGE_CODE = 'es'

Leave a comment