Addresses issue #76 by adding instructions to the proposal form.
This commit is contained in:
parent
636fcc449d
commit
319466454c
1 changed files with 5 additions and 0 deletions
|
@ -36,6 +36,11 @@ class ProposalForm(forms.ModelForm, ProposalMixIn):
|
|||
"<a href='http://daringfireball.net/projects/markdown/basics' "
|
||||
"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):
|
||||
value = self.cleaned_data["description"]
|
||||
|
|
Loading…
Reference in a new issue