This might be off topic, but maybe you should consider splitting your application into multiple smaller reusable applications? If the models of a single application need categorizing, you might have a sign of needing to split them up.
A talk on reusable applications by James Bennet from DjangoCon 2008: http://www.youtube.com/watch?v=A-S0tqpPga4 Erik On 26.09.2008, at 9:46, Thomas Guettler wrote: > > Stephen Sundell schrieb: >> I really was just looking for a way >> to separate models into different modules or files within the same >> application. Is this possible? >> > Hi, > > I do it like this: > > Directory myapp/models/ contains: > __init__.py > myclass.py > > file __init__.py: > from myclass import MyClass > > file myclass.py: > class MyClass(models.Model): > class Meta: > app_label='myapp' > > HTH, > Thomas > > > -- > Thomas Guettler, http://www.thomas-guettler.de/ > E-Mail: guettli (*) thomas-guettler + de > > > > --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---