I am trying to build a white labled product and I am thinking to use django-sites module. I have multiple models of a particular site. I have found an example like add foreign key of a Site model to a single model. but adding foreign key of Site model to each and every model in every api call, I don't think is a best practice.
Is there any other way to define once and it will add automatically Site id like we use abstract classes for created_at and so on.
Thanks.