1👍
✅
You have excluded the is_big
from model form. That is why it is not present in the cleaned_data
. You need to get the value from POST
:
is_big = request.POST.get('is_big')
Source:stackexchange.com