/')
>
> 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
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
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
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