|
@@ -339,6 +339,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
|
|
|
- `PAYMENT_DELAY`: Payment delay in days for issued invoices ( default is 30 days which is the default in french law)
|
|
|
- `MEMBER_CAN_EDIT_PROFILE`: Allow members to edit their profiles
|