In the docs, the nullbooleanfield is represented as a <select> box with "Unknown", "Yes" and "No" choices. How can I change the values of select to some other more meaningful texts and map it back to the yes,no and unknown values in my modelform?
For example I have yes_no_required = models.NullBooleanField() and I would like to have 'yes I acknowledge this', 'no, I do not like this' and 'I do not know now' mapping to yes, no and required accordingly.