I want a create form where people can select "a template" which prepoulate the form. The template is another model with the same fields. For example i have an AbstractArticle and TemplateArticle and RealArticle with the same structure.
I am trying to use get_initial() to polulate the form but it takes only a dict and it is odd, because the form is quite complex (I can't get it to work with dropdown).
Is there a way to supply a model instance as initial data?