python - How to add Indian Standard Time (IST) in Django? -


We currently want to come to India in our own dégggo project. In settings.py, UTC is by default. How can we change it?

change the field TIME_ZONE settings.py . For the Indian Standard Time, you will need:

TIME_ZONE = 'Asia / Kolkata'

You can see more information about TIME_ZONE in Django Are: / P>


Comments