|
@@ -9,6 +9,12 @@ STARTPAGE = "startpage"
|
9
|
9
|
# Activate content management system (view)
|
10
|
10
|
# CMS_MODE = True
|
11
|
11
|
|
|
12
|
+#
|
|
13
|
+# Themes library
|
|
14
|
+#
|
|
15
|
+# This defines the default theme, if no theme is set in the django parameters
|
|
16
|
+DEFAULT_THEME = 'clear-teal'
|
|
17
|
+
|
12
|
18
|
#
|
13
|
19
|
# Users library
|
14
|
20
|
#
|
|
@@ -19,6 +25,8 @@ USERS_SELF_REGISTRATION = False
|
19
|
25
|
USERS_MAIL_VALIDATION = True
|
20
|
26
|
# This enables or disables the account activation by an admin after self registration
|
21
|
27
|
USERS_ADMIN_ACTIVATION = True
|
|
28
|
+# The timeout for password recovery and mail validation tokens send via email
|
|
29
|
+PASSWORD_RESET_TIMEOUT = 60 * 60 * 3 # 3 hours
|
22
|
30
|
|
23
|
31
|
#
|
24
|
32
|
# Django mail / smtp settings
|
|
@@ -44,12 +52,6 @@ USERS_ADMIN_ACTIVATION = True
|
44
|
52
|
# Define an ssl certificate
|
45
|
53
|
# EMAIL_SSL_CERTFILE =
|
46
|
54
|
|
47
|
|
-#
|
48
|
|
-# Themes library
|
49
|
|
-#
|
50
|
|
-# This defines the default theme, if no theme is set in the django parameters
|
51
|
|
-DEFAULT_THEME = 'clear-teal'
|
52
|
|
-
|
53
|
55
|
#
|
54
|
56
|
# Django
|
55
|
57
|
#
|