loophole=forms.BooleanField(required=False,label=_('Is there another offer provided by this Operator which removes this discrimination? (optional)'))
contractual=forms.BooleanField(required=False,label=_('The discrimination is described in the subscribers contract.'))
contract_excerpt=forms.CharField(required=False,widget=AdvancedEditor(),label=_('Please copy the relevant section describing the discrimination from the user contract. (optional)'))
type=forms.ChoiceField(required=True,choices=tuple(sorted(TYPES,key=itemgetter(1))),label=_('How would you describe the discrimination?'))
type=forms.ChoiceField(required=True,choices=tuple(TYPES),label=_('How would you describe the discrimination?'))
captcha=CaptchaField(label=_("In order to protect against spam, please fill in the result of the following calculation. (note the + and the * are somewhat confusing)"))