How can I convince a general view based on the Django 1.3 class:
UpdateView.as_view(model=Category,
template_name='generic_form.html',
success_url='/category/')
Do not give up so easily with an error:
"Cannot set values on a ManyToManyField which specifies an intermediary model."
Even if all fields of the intermediate model have default values, I cannot get a general general view of the class to save. The functional version also looks dirty. Django 1.3.
source
share