3👍
✅
It’s really a PyDev issue with Django 1.4. A new release (2.5.0) will be done later this week properly supporting the layout changes in Django 1.4.
You can still use the project created this way, but you have to do some manual things:
-
Move the contents inside of the folder that was created to your module (this was the structural change done in django 1.4)
-
The settings.py won’t have the details you entered in the wizard (i.e.: manually edit the settings.py)
-
In the project django’s properties (right click project > properties and check the django properties page), you have to put the proper settings to the settings module and manage.py.
0👍
I updated my pydev today to the last version and now it seems to be working beautifully…
- [Django]-How to put placeholder in Django date range filter
- [Django]-Make a One to Many Relation in django
- [Django]-How to use a custom decorator with default Django auth login view
Source:stackexchange.com