[Answer]-Using Django Forms: How can i use the chosen value of a forms.ModelChoiceField within a userdef validation

1👍

You should do this in clean(), not clean_amount(). From clean you can access self.cleaned_data['amount'] and self.cleaned_data['currency'].

Leave a comment