I have in my models Item with a many-to-many connection with Categories, and Categories have a Foreign Key to User.
What I'm hitting a road block figuring out is how to create a view with the intent to import an Item object to one or more of a User's Categories.
In it's most basic implementation I would like the view to display only the list of Categories that the User owns, and have the view process the form so that the Item is added to the appropriate Categories.
I've been struggling trying to figure out how to start this, including how to pass a User's categories to the form.
Thanks.