Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been searching for days for this problem and I'm still completely lost. I need direction with my models, forms, and admin so I don't end up with a hacked solution. Here's my models and their fields:

A library model
(fields not important)

A book model
Author (FK)
Publisher (FK)

An Author model.
Publisher (FK) (in this case an author can only have one publisher)

A Publisher model
name (charfield)

I've built a ModelForm called BookForm, which uses a BookFormset of type inlineformset_factory.

That is used by my BookInline (admin.TabularInline) and put into my LibraryAdmin (with inlines=[BookInline,])

A requirement is that these models need to be inlined so the client can fill out all Library information in ONE page. I've got the inlining working.

Here's where I'm stuck: When the client chooses (from a select box) 'Author' in the BookInline, the 'Publisher' selectbox should auto-populate with the author's publisher. Otherwise, the client can just click the selectbox and choose from the list of all publishers. (it's a convenience thing)

I don't want to use AJAX, so I need to inject all Authors and their publishers into javascript when the page loads, so I can get the K,V reference and put it into the publisher select box.

I've read so many SO posts and Djangodocs that I've confused myself and not sure how to achieve this. I've also tried defining Class Media with a js file in BoardAdmin, but I don't know how to pass Author.objects.all() to it.

Hopefully all of this makes sense.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.