Skip to content

Commit

Permalink
removes app ifs by default
Browse files Browse the repository at this point in the history
  • Loading branch information
brunosmartin committed Apr 4, 2016
1 parent 0741251 commit 350afbd
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions timtec/settings_local.py.template
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ SITE_ID = 1
TIMTEC_THEME = 'ifs-colors'

###### TODO: Remove this block if you don't want to use ifs app ######
INSTALLED_APPS = list(INSTALLED_APPS)
INSTALLED_APPS.insert(INSTALLED_APPS.index('accounts') + 1, 'ifs')
ACCOUNT_SIGNUP_FORM_CLASS = 'ifs.forms.IfSignupForm'
AUTH_USER_MODEL = 'ifs.IfUser'
ACCOUNT_FORMS = {'login': 'ifs.forms.IfLoginForm'}
# INSTALLED_APPS = list(INSTALLED_APPS)
# INSTALLED_APPS.insert(INSTALLED_APPS.index('accounts') + 1, 'ifs')
# ACCOUNT_SIGNUP_FORM_CLASS = 'ifs.forms.IfSignupForm'
# AUTH_USER_MODEL = 'ifs.IfUser'
# ACCOUNT_FORMS = {'login': 'ifs.forms.IfLoginForm'}

TERMS_ACCEPTANCE_REQUIRED = False
########################################################################

###### TODO: add any subdomains you need here. ######
###### FIXME: Security warning: accepting from all domains is dangerous
Expand Down

0 comments on commit 350afbd

Please sign in to comment.