Comment #1 on issue 6 by ysugiura: Bookmarks cannot be added with Django 1.2
http://code.google.com/p/django-bookmarks/issues/detail?id=6
When the error above is fixed, it's still impossible to add a new
bookmark,
as the form isn't validated (there is no error message, the form is just
displayed
once again). The fields that cannot be validated are BookmarkInstance.user
and BookmarkInstance.bookmark
This problem is caused by the user value which is expected by the form
validator, but not present in the submitted data.
Uncommenting the following line in bookmarks/forms.py solves the problem.
The side effects are not throughly checked though...
#fields = ('url', 'description', 'note', 'redirect')
--
You received this message because you are subscribed to the Google Groups
"pinax-updates" 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/pinax-updates?hl=en.