I try to prepopulate a TimeField in django_admin with the following code :
from django.utils import timezone
time_start = models.TimeField('Heure de debut',max_length=20, default=timezone.now)
I've installed pytz and also correctly set
TIME_ZONE = 'Europe/Brussels'
USE_TZ = True
and the "now" button in admin correctly sets the time if I click on it. However, it initialy shows the time in UTC (two hours before the actual time in my case)
Am I missing something and is there a way to solve this ? I don't want to use auto_now_add=False because I want to be able to change this time later...