Changeset - e04220b72a5d
[Not reviewed]
0 1 0
Luke Hatcher - 12 years ago 2012-10-31 00:46:36
lukeman@gmail.com
add in additional symposion apps
1 file changed with 2 insertions and 0 deletions:
0 comments (0 inline, 0 general)
symposion_project/settings.py
Show inline comments
...
 
@@ -138,48 +138,50 @@ INSTALLED_APPS = [
 
    "pinax_theme_bootstrap",
 
    "django_forms_bootstrap",
 
    
 
    # external
 
    "debug_toolbar",
 
    "mailer",
 
    "timezones",
 
    "metron",
 
    "markitup",
 
    "taggit",
 
    "reversion",
 
    "easy_thumbnails",
 
    "sitetree",
 
    "account",
 
    
 
    # symposion
 
    "symposion",
 
    "symposion.sponsorship",
 
    "symposion.conference",
 
    "symposion.cms",
 
    "symposion.boxes",
 
    "symposion.proposals",
 
    "symposion.speakers",
 
    "symposion.teams",
 
    "symposion.reviews",
 
    "symposion.schedule",
 
    
 
    # project
 
    "symposion_project.proposals",
 
]
 

	
 
FIXTURE_DIRS = [
 
    os.path.join(PROJECT_ROOT, "fixtures"),
 
]
 

	
 
MESSAGE_STORAGE = "django.contrib.messages.storage.session.SessionStorage"
 

	
 
EMAIL_BACKEND = "mailer.backend.DbBackend"
 

	
 
ACCOUNT_OPEN_SIGNUP = True
 
ACCOUNT_USE_OPENID = False
 
ACCOUNT_REQUIRED_EMAIL = False
 
ACCOUNT_EMAIL_VERIFICATION = False
 
ACCOUNT_EMAIL_AUTHENTICATION = False
 
ACCOUNT_UNIQUE_EMAIL = EMAIL_CONFIRMATION_UNIQUE_EMAIL = False
 

	
 
ACCOUNT_SIGNUP_REDIRECT_URL = "dashboard"
 
ACCOUNT_LOGIN_REDIRECT_URL = "dashboard"
 
ACCOUNT_LOGOUT_REDIRECT_URL = "home"
 
ACCOUNT_USER_DISPLAY = lambda user: user.email
0 comments (0 inline, 0 general)