I'll give you the benefit of the doubt since it seems some of this is getting lost in translation.
Your app must have this sort of structure: app |-- __init__.py |-- models | |-- __init__.py | |-- auth.py | `-- blogs.py `-- views.py If app/models/auth.py defines a User class, and app/models/blogs.py defines a Blog class, then in app/views.py you would refer to them like this: from app.models.auth import User from app.models.blog import Blog You cannot refer to them like so: from app.models import * unless you first import them into app/models/__init__.py. This is well documented python semantics; read the python docs for more information. Cheers Tom -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. 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.

