Kaydet (Commit) bda408f6 authored tarafından Tim Graham's avatar Tim Graham

Fixed #25153 -- Moved 'polls' first in tutorial's INSTALLED_APPS.

üst c1893e28
...@@ -206,13 +206,13 @@ look like this: ...@@ -206,13 +206,13 @@ look like this:
:filename: mysite/settings.py :filename: mysite/settings.py
INSTALLED_APPS = [ INSTALLED_APPS = [
'polls',
'django.contrib.admin', 'django.contrib.admin',
'django.contrib.auth', 'django.contrib.auth',
'django.contrib.contenttypes', 'django.contrib.contenttypes',
'django.contrib.sessions', 'django.contrib.sessions',
'django.contrib.messages', 'django.contrib.messages',
'django.contrib.staticfiles', 'django.contrib.staticfiles',
'polls',
] ]
Now Django knows to include the ``polls`` app. Let's run another command: Now Django knows to include the ``polls`` app. Let's run another command:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment