contract=forms.CharField(required=True,max_length=256,help_text=_('The specific contract at the ISP provider. (please be as specific as possible)'))
media=forms.ChoiceField(required=False,choices=(('',''),)+tuple(sorted(MEDIA,key=itemgetter(1))),label=_('Is the Internet connection over mobile or fixed line?'))
comment=forms.CharField(required=True,widget=AdvancedEditor(),label=_('Please describe the symptoms you are experiencing. What service or site, or person is unavailable or seems artificially slowed down.'))
email=forms.EmailField(required=True,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,help_text=_("We need some name to display that instead of an email address."))
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.'))
msg=MIMEText(_("Thank you for submitting a new report. To finalize your submission please confirm using your validation key.\nYour verification key is %s/%s%s\nYour report will be listed after we assured it is valid.")%(settings.ROOT_URLor'http://localhost:8001/',service,actid))
msg=MIMEText(_("Thank you for submitting a new report. To finalize your submission please confirm using your validation key.\nYour verification key is %s/%s%s\nPlease note that reports are moderated, it might take some time before your report appears online. Thank you for your patience.")%(settings.ROOT_URLor'http://localhost:8001/',service,actid))