On Sun, May 25, 2008 at 12:30 AM, Trevor Caira <[EMAIL PROTECTED]> wrote:
> How can I model this situation most simply, and with the least code
> duplication, in django?

Hi Trevor,
Have you looked at the Model Inheritance part of the documentation?

http://www.djangoproject.com/documentation/model-api/#model-inheritance

You could abstract all the common elements into one model (the
abstract base class) and have the other models subclass that parent.
They would then contain only the parts of the model that differ from
model to model.

/alex

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to