Re: Can't display DateField on form with auto_now = True

2012-04-05 Thread Joel Goldstick
On Thu, Apr 5, 2012 at 1:27 PM, Joel Goldstick wrote: > I have a model with auto_now, and auto_now_add set for Update and Create > fields: > class HotelProfiles(models.Model): >    fe_result_id = models.AutoField(primary_key=True) >    fe_created_date = models.DateTimeField(verbose_name='Created'

Can't display DateField on form with auto_now = True

2012-04-05 Thread Joel Goldstick
I have a model with auto_now, and auto_now_add set for Update and Create fields: class HotelProfiles(models.Model): fe_result_id = models.AutoField(primary_key=True) fe_created_date = models.DateTimeField(verbose_name='Created', blank=True, auto_now_add=True) fe_updated_date = models.Da