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.DateTimeField(verbose_name='Updated', blank=True, auto_now=True)
In the Admin it displays both fields but leaves them uneditable. They don't seem to be passed to my form to be rendered. I don't want them to be editable, but I would like to display at the top of my form. How can I do this? -- Joel Goldstick -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.