In my model I have these two fields:
start_bid = models.IntegerField(default=0)
max_bid = models.IntegerField(default="the start_bid value")
The start_bid will be added by the user once through Django ModelForm. And the max_bid may change and may not.
So I need the first value of 'max_bid' to be the start_bid value entered by the user, then if it changes it will be updated.
In brief, I need the initial value of max_bid to be equal to the start_bid!
Any suggestions?