We want to get the current time in India in our Django project. In settings.py, UTC is there by default. How do we change it to IST?
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'Asia/Calcutta'
USE_I18N = True
USE_L10N = True
USE_TZ = True
This should work.