In django 1.5,
i used in my settings... :
USE_TZ = True
TIME_ZONE = 'Europe/Paris'
when i created an objects with
date_crea= auto_add_now()
at 16h20 on my computer in Paris, on the mysql database, date_crea is set to 14h20 ...
On my admin list_display, i see 16h20 too but when i want to used date_crea in my view, my_objects.date_crea=14h20, why django know to show me the correct date on my admin list_display and not in my view ?