Added south

This commit is contained in:
Felipe Martín 2013-05-20 16:08:45 +02:00
parent 687c9d32df
commit dfef227c21
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,4 @@
Django==1.5.1 Django==1.5.1
jingo==0.6.1 jingo==0.6.1
django-grappelli==2.4.4 django-grappelli==2.4.4
South==0.7.6

View File

@ -124,6 +124,8 @@ INSTALLED_APPS = (
'django.contrib.staticfiles', 'django.contrib.staticfiles',
'grappelli', 'grappelli',
'django.contrib.admin', 'django.contrib.admin',
'database',
'south'
) )
# Admin # Admin
@ -135,6 +137,7 @@ AUTOCOMPLETE_LIMIT = 10
# the site admins on every HTTP 500 error when DEBUG=False. # the site admins on every HTTP 500 error when DEBUG=False.
# See http://docs.djangoproject.com/en/dev/topics/logging for # See http://docs.djangoproject.com/en/dev/topics/logging for
# more details on how to customize your logging configuration. # more details on how to customize your logging configuration.
"""
LOGGING = { LOGGING = {
'version': 1, 'version': 1,
'disable_existing_loggers': False, 'disable_existing_loggers': False,
@ -158,7 +161,7 @@ LOGGING = {
}, },
} }
} }
"""
try: try:
LOCAL_SETTINGS LOCAL_SETTINGS
except NameError: except NameError: