I am working with Django and its Forms classes.
I have created a Form with a single forms.IntegerField and I want to define its min_value parameter dynamically:
class BiddingForm(forms.Form):
bidding_form = forms.IntegerField(min_value=1, help_text="€", label="Bid")
Right now, it is statically set to 1. I have tried to overwrite the __init__() function and pass in a min_value there. But since bidding_form is a class variable, I cannot use the resulting instance variable min_value on it:
class BiddingForm(forms.Form):
min_value = 1
def __init__(self, min_value):
super().__init__()
self.min_value = min_value
bidding_form = forms.IntegerField(min_value=min_value, help_text="€", label="Bid")
As of my understanding, above class creates an instance variable min_value inside of __init__() which just shadows the class variable min_value and it ultimately results in min_value being 1 in the bidding_form's declaration.
Since I have little understanding of Python and Django, I have not yet found a solution to this.
So, how can I dynamically define forms.IntegerField's min_value parameter?