I'm trying to build a comments section in my website, and I'm pretty much done, but I'm trying to display the time that it was posted, but it keeps displaying the wrong time.
This is my code in my models.py Posts class:
date = models.DateTimeField(default=timezone.now)
I know that the database recognizes something is wrong because it shows me this message:
but I don't know how to fix it. Can someone please help me?
P.S: I know it says it's behind, but at the time this screenshot was taken, the date was 5/10, not 5/11.