0

I made a web app using django, I'm not sure about the timezones and stuff. I have the user's preferred timezone, how can I set this timezone relative to that particular user? or will it automatically adjust to the user's timezone?

akajash
  • 97
  • 9

1 Answers1

-1

You can set the time zone that you want django to use in the settings.py

eg settings.py

TIME_ZONE = 'Europe/Berlin'
June Muoti
  • 19
  • 4