Re: form object created with empty _meta

2009-03-03 Thread Alex Gaynor
On Tue, Mar 3, 2009 at 3:54 PM, nivhab wrote: > > > As far as I know you can't use django ModelForms with google app > engine. > > Google provides a "djangoforms" module in which the copy-paste much of > the ModeForm functionality adjusted to their meta-model (see > http://code.google.com/appeng

Re: form object created with empty _meta

2009-03-03 Thread nivhab
> As far as I know you can't use django ModelForms with google app engine. Google provides a "djangoforms" module in which the copy-paste much of the ModeForm functionality adjusted to their meta-model (see http://code.google.com/appengine/articles/djangoforms.html) so it should work. Furthermo

Re: form object created with empty _meta

2009-03-03 Thread Alex Gaynor
On Tue, Mar 3, 2009 at 3:31 PM, nivhab wrote: > > Here's the form class. > Thanks, Yaniv > > > --- > from busa.models import User > from django.utils.translation import ugettext_lazy as _ > from django import

Re: form object created with empty _meta

2009-03-03 Thread nivhab
Here's the form class. Thanks, Yaniv --- from busa.models import User from django.utils.translation import ugettext_lazy as _ from django import forms class UserForm(forms.ModelForm): """ A form that

Re: form object created with empty _meta

2009-03-03 Thread Alex Gaynor
On Tue, Mar 3, 2009 at 3:18 PM, nivhab wrote: > > Hi, > > I am using django on google app engine, and also using the app-engine- > patch package. > I am getting this error when trying to save a form: > > Exception Value:'NoneType' object has no attribute 'properties' > Exception Location: