How can I convince a Django 1.3 class based generic view:
UpdateView.as_view(model=Category,
template_name='generic_form.html',
success_url='/category/')
To not give up so easy with error:
"Cannot set values on a ManyToManyField which specifies an intermediary model."
Even if all fields in the intermediary model have defaults, I can't get the class based generic view to save. The functional based version looks messy also. Django 1.3.