Hi folks
I'am new to django and try to follow the tutorial to digg into the code.
I am using eclipse 4.3.SR2 with PyDev 3.4.1 and Django 1.7.b2 (because of the new features)
In Tutorial Part 3 (
https://docs.djangoproject.com/en/1.7/intro/tutorial03/) the database API is used to get the latest 5 objects
latest_question_list = Question.objects.order_by('-pub_date')[:5]
But my eclipse/PyDev does not resolve the objects correctly. "
Question.objects" will e resolved bot not further on. This leads to the problem that PyDev is claiming about a "undefined variable from import: order_by"
I know that I can turn off this in the settings, but I would like to know if there is a way to bring this auto-completion feature to work.
The application is running correctly an on the python shell the auto-completion is also working.
So therefor I would think it is a PyDev problem or did I just missed to add something to the config?