What is the absolute path of BASE DIR?
If you want to know where is located BASE_DIR, you can print it to the terminal, just add this line to your settings.py:
print "base dir path", BASE_DIR
and runserver to see results.
BASE_DIR is your Django project directory. The same directory where manage.py is located.