Am using eclipse+pydev to build my django apps. I created a new workspace, built a new pydev project then created an empty folder in the new pydev project. In that empty folder i imported my old django application. Eclipse copied all the files & folders from my old django location to the new workspace.
I made the necessary changes in the settings.py on my new location, pointed the templates & data location to my new location workspace folder.
But when i run manage.py runserver from the new location workspace folder, django seems to point to my old folder location. All the html templates seems to point to the old location.
How can i make django execute stuff in my new location?
What am i missing?
Edit: When i run the server inside eclipse, everything seems to be OK! funny.
Gath