DateTimeField in Django Models is incorrect!

Hope everyone is having a great day!

So right now in my models I have a DateTimeField which adds the date and the specific time.
The problem though is that it is returning the wrong date and field. Probably from some other timezone. I am not sure how to make sure it outputs the CORRECT date AND TIME based on your timezone. Not sure how to get that working. Thanks!

date = models.DateTimeField(auto_now_add = True)

Time zones are a fairly complex topic. There are a fair number of intricacies that vary based upon your particular settings.

Start with reviewing the docs referenced above.

Also see Time zone aware output in templates.

Thank you :+1:. I also just realized I don’t need the date for the program I built but will look at the docs you sent. Will help with future programs for sure.