diff options
author | Teddy Wing | 2014-04-20 00:24:25 -0400 |
---|---|---|
committer | Teddy Wing | 2014-04-20 00:26:27 -0400 |
commit | 90b8096f1fb9b06880d1b9b61b2a02e067d54003 (patch) | |
tree | c277604d52a964af723e119e71ac42c1c329056b /examples | |
parent | 76efaab3f8a0f2d7de848d3c063f7f8d080fa77a (diff) | |
download | django-sneak-peek-90b8096f1fb9b06880d1b9b61b2a02e067d54003.tar.bz2 |
Add sneak_peek app to example project settings
Adds app to example project's INSTALLED_APPS.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/djangoproject/djangoproject/settings.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/djangoproject/djangoproject/settings.py b/examples/djangoproject/djangoproject/settings.py index d572de8..acd56b1 100644 --- a/examples/djangoproject/djangoproject/settings.py +++ b/examples/djangoproject/djangoproject/settings.py @@ -113,6 +113,7 @@ INSTALLED_APPS = ( 'django.contrib.sites', 'django.contrib.messages', 'django.contrib.staticfiles', + 'sneak_peek_tag', # Uncomment the next line to enable the admin: # 'django.contrib.admin', # Uncomment the next line to enable admin documentation: |