I have a problem with my models.DateTimeField, because I´m from México and in settings.py I use this:
TIME_ZONE = 'America/Mexico_City'
But when i add a register in my mysql database, it says that the register added at 18:00 (4 hours later, because here, in Mexico City is 14:00)
titulo = models.CharField(max_length = 60)
contenido = models.CharField(max_length = 140)
fecha = models.DateTimeField(auto_now_add = True)
auto_now_addshould just take into account the configured timezone (see docs). Do you haveUSE_TZ = Truein settings? – alecxe May 4 '13 at 21:55