In that case, you'd just add a 'model number' field to your table. In the Django ORM, each Model instance relates to a table. So you aren't going to want to have more than one to write your code against.
Just read through these two pages and everything should make sense: https://docs.djangoproject.com/en/1.5/topics/db/models/ https://docs.djangoproject.com/en/1.5/ref/models/querysets/ It may seem like a lot of reading at first, but unless you have at least a vague memory of what's in these pages when you start writing code, you're going to get badly stuck and probably not have a clue what the best search terms will be to get you unstuck. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/django-users?hl=en. For more options, visit https://groups.google.com/groups/opt_out.

