nick=forms.CharField(required=False,label=_("Name or nickname"),help_text=_("We need some name to display that instead of an email address."))
attachments=MultiFileField(required=False,label=_("Attach screenshot, document or any other relevant information."))
resource=forms.ChoiceField(required=False,choices=tuple(sorted(RESOURCES,key=itemgetter(1))),label=_('What is the affected resource type. (optional)'))
type=forms.ChoiceField(required=True,choices=tuple(sorted(TYPES,key=itemgetter(1))),label=_('What types of resctriction happens in this case?'))
type=forms.ChoiceField(required=True,choices=tuple(sorted(TYPES,key=itemgetter(1))),label=_('How would you describe the discrimination?'))
temporary=forms.BooleanField(required=False,label=_('Is the restriction only temporary, e.g. due to network overload? (optional)'))
loophole=forms.BooleanField(required=False,label=_('Is there another offer provided by this Operator which removes this restriction? (optional)'))
contractual=forms.BooleanField(required=False,label=_('The restriction is described in the subscribers contract.'))