Thank you for your reply.
Will give me the date and time of the last time it was saved? Because that is not what I am seeing. I am seeing the date the model was first created.
On Tuesday, June 5, 2012 12:33:36 PM UTC-7, Jesus Noland wrote:
Hello everyone,
I am using Django 1.3 on Python 2.7 and I have a field in a model setup like this:
date = models.DateTimeField(auto_now=True, auto_now_add=True)
now I would like to know how to get the last modified date from this field if my model
is called 'm':
m.date.last_modified ???
Your help is greatly appreciated. Thank you.