bookmarks are failing to post in pinax 0.9. no errors produced (csrf), adding a bookmark through django admin works & django-bookmarks is able to recall it..just fails posting.
I can provide a little more information since I'm having the same issue. This is using django-bookmarks with v1.2.1.
In forms.py, is_valid() is returning false because the foreign key values for 'user' and 'bookmark' are not getting passed through on POST.
I suppose this can be easily fixed if you pass in the correct parameters to the __init__ function in forms.py.
Even easier...just uncomment the
#fields = ('url', 'description', 'note', 'redirect')
and it seemed to POST fine for me.
This works. Thanks!
You can get the code from http://github.com/mark0978/django-bookmarks with the fix in place.
The actual problem was that the fields to check in is_valid were not correctly set since the fields attribute wasn't set.