Django 1.8: How to use a model in another application as "pass-through" in many-to-many relationships?

Documents are only rendered using the many-many-pass / staging model, in which the model resides in a single application. How can I do this with a staging table in another application? I don't think that from app import intermediary

works since the attribute is through

declared inside apostrophes.

0


source to share


1 answer


Answer: Use 'app.model'

. I didn't think it would work in this context, but it does



+1


source







All Articles