RPeraltaJr
6/16/2017 - 4:25 PM

Add App to Project and update Timezone

...
...

# Application definition

INSTALLED_APPS = [
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'courses', # Added App here
]

...
...

TIME_ZONE = 'America/New_York' # Changed from 'UTC' to 'America/New_York'

...
...