From 319466454c9d3f9e92559cdf39fc90e85377adfc Mon Sep 17 00:00:00 2001 From: Christopher Neugebauer Date: Tue, 22 Aug 2017 12:25:10 -0700 Subject: [PATCH] Addresses issue #76 by adding instructions to the proposal form. --- pinaxcon/proposals/forms.py | 5 +++++ 1 file changed, 5 insertions(+) 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"]