Hey,
I'm working on schedules for my project but want to make sure to abide by users timezones. How exactly can I do this?
So in settings I have TIME_ZONE = "GMT"; USE_TZ = True but that's kind of different to what I want.
I have a HTML an input like this:
<input type="datetime-local" name="date_time" />
But it's giving just a datetime back and I'm not sure how to get that specific users timezone. I either want to convert ALL times to UTC just to keep them consistent for schedules, or extract the users timezone out, which would have to be like Europe/London.
How can I do this?
Thanks, I can provide more detail if I missed anything