I am using geodjango to create data repository , and have a basic model to store the contents of a shape file . I want to have multiple tables , with attributes generated on the fly . There are tables that deal with user , and one table that deal with each shape file .
What I want to know is , I have a basic model that creates a table per shape file . What I want is also another table that deals with the user . So , should I create another model or another class in the same model ?
Thus , if I want to have multiple tables , should I create multiple models or multiple classes ?
If multiple models , then how do I link it to a view ?