Here's another possibility if you're still having problems
with __init__.py.  Assuming you've got your other modules
in the directory:

 mymodules/
   othermodels.py

Put a conventional models.py file in your app directory:

 myapp/
   models.py

Then import othermodels classes into models:

 # models.py
 from mymodules.othermodels import model_1, model_2, ...


--
Jeff Bauer
Rubicon, Inc.


--~--~---------~--~----~------------~-------~--~----~
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