diff --git a/pinaxcon/proposals/forms.py b/pinaxcon/proposals/forms.py index 1c6da9b..ff11df2 100644 --- a/pinaxcon/proposals/forms.py +++ b/pinaxcon/proposals/forms.py @@ -36,6 +36,11 @@ class ProposalForm(forms.ModelForm, ProposalMixIn): "Markdown.") + for field in ("description", "abstract", "additional_notes"): + self.fields[field].help_text += (" Please do not include " + "any information that could identify you, as your proposal " + "will be reviewed anonymously.") + def clean_description(self): value = self.cleaned_data["description"]