Re: populating database model with form model

2008-11-16 Thread jtobe
yes, i wanted all the new features and enhancements from 1.0 over 0.96, so i package my own django 1.0 version in the project. i have tried to use google's djangoforms as well as django.form and using either one, i get the same errors. i do appreciate all you trying to help me with this. i just

Re: populating database model with form model

2008-11-16 Thread Steve Holden
Beware, though, of assuming exact parallels. The django on GAE is a) somewhat out of date, and b) modified to adapt it to the Google App Engine hosting environment. Good luck with your project. regards Steve jtobe wrote: > thanks for trying to help. > > app engine models use .put() instead

Re: populating database model with form model

2008-11-16 Thread jtobe
thanks for trying to help. app engine models use .put() instead of .save() and according to guido, there is very little difference between the two. I have pasted models.py and search.py so you can see the two. maybe that will help. paste url: http://dpaste.com/91258/ the django app i'm

Re: populating database model with form model

2008-11-16 Thread Daniel Roseman
On Nov 16, 6:43 pm, jtobe <[EMAIL PROTECTED]> wrote: > Hi, i wasn't sure whether i should ask this here or on the google app > engine list. > > I really have two problems. The first is, if i have a form that i > populate choices in a choicefield using entries in the database, it > only updates

populating database model with form model

2008-11-16 Thread jtobe
Hi, i wasn't sure whether i should ask this here or on the google app engine list. I really have two problems. The first is, if i have a form that i populate choices in a choicefield using entries in the database, it only updates once. Every time after the first time it just uses the same vales