I\'m new to Django. I can check form data using if field in self.data and grab field value like product_id = int(self.data.get(\'product\')) that\'s al
if field in self.data
product_id = int(self.data.get(\'product\'))