Django admin inlines and custom form arguments

Posted on Sun 15 November 2015 in Web Development • Tagged with Django, Django AdminLeave a comment

Django admin inlines are a quick and convenient way to embed related objects into a django admin detail page. All is great until you need a custom form to handle the edits for the related objects, that in turn need custom arguments to be passed to the form constructor. In the following post, I'll describe a possible solution to this problem.

Continue reading