|
@@ -342,6 +342,20 @@ List of available settings in your `settings_local.py` file.
|
|
|
- `EXTRA_TEMPLATE_DIRS`: See *Customizing templates*
|
|
|
- `LDAP_ACTIVATE`: See *LDAP*
|
|
|
- `MEMBER_MEMBERSHIP_INFO_URL`: Link to a page with information on how to become a member or pay the membership fee
|
|
|
+
|
|
|
+- `MEMBERSHIP_FEE_REMINDER_DATES`: how long before/after the membership fee
|
|
|
+ anniversary date we want to send a reminder email to the member. It defaults
|
|
|
+ to the following:
|
|
|
+
|
|
|
+```
|
|
|
+MEMBERSHIP_FEE_REMINDER_DATES = [
|
|
|
+ {'months': -3}, # 3 months before
|
|
|
+ {'months': -2}, # 2 months before
|
|
|
+ {'months': -1}, # 1 month before
|
|
|
+ {'days': 0}, # the day of anniversary
|
|
|
+ {'months': +1}, # 1 month after
|
|
|
+]
|
|
|
+```
|
|
|
- `SUBSCRIPTION_REFERENCE`: Pattern used to display a unique reference for any subscription. Helpful for bank wire transfer identification
|
|
|
- `REGISTRATION_OPEN` : Allow visitor to join the association by register on COIN
|
|
|
- `ACCOUNT_ACTIVATION_DAYS` : All account with unvalidated email will be deleted after X days
|