Added clarifying note to docs/model-api.txt

git-svn-id: http://code.djangoproject.com/svn/django/trunk@586 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2005-09-01 02:12:53 +00:00
parent d74373924d
commit 005e70387c
1 changed files with 3 additions and 0 deletions

View File

@ -1010,6 +1010,9 @@ just import the model module at the top of your model module, like so::
from django.models import core
Make sure you're importing from ``django.models``, not directly from your model
module.
Then, just refer to the other model class wherever needed. For example::
class MyModel(meta.Model):