Addresses issue #76 by adding instructions to the proposal form.

This commit is contained in:
Christopher Neugebauer 2017-08-22 12:25:10 -07:00
parent 636fcc449d
commit 319466454c

View file

@ -36,6 +36,11 @@ class ProposalForm(forms.ModelForm, ProposalMixIn):
"<a href='http://daringfireball.net/projects/markdown/basics' " "<a href='http://daringfireball.net/projects/markdown/basics' "
"target='_blank'>Markdown</a>.") "target='_blank'>Markdown</a>.")
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): def clean_description(self):
value = self.cleaned_data["description"] value = self.cleaned_data["description"]