@@ -25,11 +25,11 @@ class AddViolation(forms.Form):
email=forms.EmailField(required=True,label=_('Email (set this to enable saving)'),help_text=_("We need your email to validate your report. Your email address is obligatory, but we willl never use your personal data for anything else than checking the submission."))
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.'))
resource_name=forms.CharField(required=False,max_length=4096,label=_('Please specify the name of the affected resource.'))
type=forms.ChoiceField(required=False,choices=(('',''),)+tuple(sorted(TYPES,key=itemgetter(1))),label=_('Is the Resource Blocked or otherwise discrimated?'))
temporary=forms.BooleanField(required=False,label=_('Is the restriction only temporary, e.g. due to network overload?'))
loophole=forms.BooleanField(required=False,label=_('Is there another offer provided by this Operator which removes this restriction?'))
contractual=forms.BooleanField(required=False,label=_('Is the restriction described in the users contract?'))
contract_excerpt=forms.CharField(required=False,widget=AdvancedEditor(),label=_('Please copy the relevant section describing the restriction from the user contract.'))
resource=forms.ChoiceField(required=False,choices=(('',''),)+tuple(sorted(RESOURCES,key=itemgetter(1))),label=_('What is the affected resource. (optional)'))
resource_name=forms.CharField(required=False,max_length=4096,label=_('Please specify the name of the affected resource. (optional)'))
type=forms.ChoiceField(required=False,choices=(('',''),)+tuple(sorted(TYPES,key=itemgetter(1))),label=_('Is the Resource Blocked or otherwise discrimated? (optional)'))
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=_('Is the restriction described in the subscribers contract? (optional)'))
contract_excerpt=forms.CharField(required=False,widget=AdvancedEditor(),label=_('Please copy the relevant section describing the restriction from the user contract. (optional)'))
captcha=CaptchaField(label=_("Unfortunately we must protect against automatic attacks, please forgive us this inconvenience. (note the + and the * are somewhat confusing)"))