X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/0a7090f11131631647db366ff87976407e788412..e62a2d9038d696e88b58e624f87026af7073088e:/src/club/forms.py diff --git a/src/club/forms.py b/src/club/forms.py index 75213fc44..675c18dc5 100644 --- a/src/club/forms.py +++ b/src/club/forms.py @@ -135,7 +135,11 @@ class DonationStep1Form(forms.ModelForm): 'monthly' ] - + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) + club = models.Club.objects.first() + self.fields['custom_amount'].widget.attrs['min'] = club.min_amount + def clean(self): state = {} state['monthly'] = self.cleaned_data['switch'] == 'monthly'