We need to track if a member is contributing to Common Fund or not. Thus we need to add a cf variable in the Member model.
is_cf = models.BooleanField(default=False).
This flag should become true if the member is also an author. If it is just a member without authorship it doesn't contribute to CF.
We need to track if a member is contributing to Common Fund or not. Thus we need to add a cf variable in the Member model.
is_cf = models.BooleanField(default=False)
. This flag should become true if the member is also an author. If it is just a member without authorship it doesn't contribute to CF.