I guess it is a "normal" problem. I want to connect model C with different Models A,B,..
Model A "buildings"
 - time_built
 - description
 - adress
 - architects[]=Model C
 - places
Model B "photos":
 - time_taken
 - title
 - architects[]=Model C
 - places
Model C "architects"
- title
- time_born
- website
- items[]=Model A+Model B
So items should be connected m:n to Model A or B for querying like "find architects by buildings in California". Model A and B can have multiple architects.
Is it possible to realize something like this in Django? I thought to use a Intermediate Model, but as I understood it does not help me too.
 
    