django-modelforms

picking the rows to be in a queryset

I'm building a page where the users can choose which rows to edit. After they select their rows and hit "edit" I'd like to present them with a modelformset_factory showing an editable version of all the rows the user selected. My problem is I believe I need to turn this list of primary keys that I get back into a queryset suitable for u...

Django: saving a ModelForm with custom many-to-many models.

I have Publications and Authors. Since the ordering of Authors matters (the professor doesn't want to be listed after the intern that contributed some trivial data), I defined a custom many-to-many model: class Authorship(models.Model): author = models.ForeignKey("Author") publication = models.ForeignKey("Publication") order...