Guys -

I have a class
class Contact(db.Model):
    person = db.ReferenceProperty(Person)
    contact_date = db.DateTimeProperty(auto_now_add=True)
    remarks = db.TextProperty()
    owner = db.UserProperty(auto_current_user_add=True)

however if i add an record in Django with the generic view the field
owner stays blank?

Second if i next want to filter on entries from a certain user. How
would i do that?

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to