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

前端 未结 13 591
终归单人心
终归单人心 2021-02-02 06:22

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?

13条回答
  •  野性不改
    2021-02-02 07:09

    Change the field TIME_ZONE in the settings.py. For the Indian standard time you will need:

    TIME_ZONE =  'Asia/Kolkata'
    

    For more information about the TIME_ZONE in Django you can see: https://docs.djangoproject.com/en/dev/ref/settings/#time-zone

提交回复
热议问题