Hi,
I'm using django-extensions 1.5.2, ipython 3.1.0 and Django 1.8 in a virtualenv w pip 1.5.4.
When I do
./manage.py shell_plus --notebook
I get no imports.
I then try:
from models import *
from .models import *
from app.models import *
from .app.models import *
from proj.app.models import *
from .proj.app.models import *
None of which have any affect.
I discovered I needed something like this in my settings:
IPYTHON_ARGUMENTS = [
'--ext', 'django_extensions.management.notebook_extension',
'--debug',
]
Which I have done, but get the same results.
How do I get access to my models?
Cheers
L.