I am an experienced Java developer looking to get experience in Django and Python in general. I decided to start with the official Django tutorial but I am running into problems within the first few steps.
- I create a new Django project with the wizard:

- Continuing with the wizard, I make sure
Enable Django adminis checked:

- The following directory structure is created:

- When I open up localhost:8000 I get the following error screen:

That error message appears despite INSTALLED_APPS being set to the following in settings.py:
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.messages',
'django.contrib.staticfiles',
# Uncomment the next line to enable the admin:
'django.contrib.admin',
# Uncomment the next line to enable admin documentation:
# 'django.contrib.admindocs',
'FirstDjangoProjects.polls',
)
I haven't changed anything, and the official tutorial suggests that I should just be able to launch this project. So what gives?