http://code.google.com/p/django-multilingual-model/
I am trying to understand how the multilanguage feature works and i found the example in the above link
What i have done is i have created a project as test and included that in settings.py
And in the test directory i have the multilingual.py and the code for this is the above said link and then i have created the models.py as in the above link.
But when i run python manage.py shell and
>>> from test.models import Language
Traceback (most recent call last):
File "<console>", line 1, in ?
File "/opt/Project_Apr22/site/test/models.py", line 2, in ?
from multiling import MultilingualModel
ImportError: cannot import name MultilingualModel
How to resolve this