|
@@ -260,3 +260,18 @@ FEEDS = (
|
|
|
('ffdn', 'http://www.ffdn.org/fr/rss.xml', 3),
|
|
|
# ('isp', 'http://isp.example.com/feed/', 3),
|
|
|
)
|
|
|
+
|
|
|
+# Account registration
|
|
|
+# Allow visitor to join the association by register on COIN
|
|
|
+REGISTRATION_OPEN = True
|
|
|
+
|
|
|
+# All account with unvalidated email will be deleted after X days
|
|
|
+ACCOUNT_ACTIVATION_DAYS = 7
|
|
|
+
|
|
|
+# Additionnal security salt use to build validation link
|
|
|
+REGISTRATION_SALT = "Mouhahahahahaha lol"
|
|
|
+
|
|
|
+# Template string to display the label the member should indicates for the bank
|
|
|
+# transfer
|
|
|
+BANK_TRANSFER_LABEL = "ID{{ user.pk }}"
|
|
|
+
|