Re: BadValueError: Property title is required

2011-06-03 Thread Casey Dwyer
/') > > Here is the template: > > {%extends "base.html"%} > {%block body%} > > Add New Category > > >   Title: >   > > > {%endblock%} > > The problem is that I'm getting an error BadValueError: Property title > is required. Can you

Re: BadValueError: Property title is required

2011-05-31 Thread bruno.desthuilli...@gmail.com
ngProperty(required=True) > >  clashes_count = db.IntegerProperty(default=0) > > Not "obviously" Django at all. > > The problem is that I'm getting an error BadValueError: Property title > > is required. Can you help me with that ? Thanks > > Try askin

Re: BadValueError: Property title is required

2011-05-31 Thread Chris Rebert
ult=0) > The problem is that I'm getting an error BadValueError: Property title > is required. Can you help me with that ? Thanks Try asking on the Django mailing list: http://groups.google.com/group/django-users Cheers, Chris -- http://mail.python.org/mailman/listinfo/python-list

BadValueError: Property title is required

2011-05-31 Thread michal.bulla
post(self): category = Category() category.title = self.request.get('title') category.put() self.redirect('/') Here is the template: {%extends "base.html"%} {%block body%} Add New Category Title: {%endblock%} The problem is that I'm getting an erro