From b39136615cff2cefb40a048802b5fa7e946d7588 Mon Sep 17 00:00:00 2001 From: Christopher Neugebauer Date: Sat, 19 Aug 2017 18:36:51 -0700 Subject: [PATCH] Fixes a message in the proposals form --- pinaxcon/proposals/forms.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pinaxcon/proposals/forms.py b/pinaxcon/proposals/forms.py index b2a3337..1c6da9b 100644 --- a/pinaxcon/proposals/forms.py +++ b/pinaxcon/proposals/forms.py @@ -29,6 +29,13 @@ class ProposalForm(forms.ModelForm, ProposalMixIn): super(ProposalForm, self).__init__(*a, **k) self.description_required() self.abstract_required() + self.fields["additional_notes"].help_text = ("Anything else " + "you'd like the program committee to know when making their " + "selection. This is not made public. " + "Edit using " + "Markdown.") + def clean_description(self): value = self.cleaned_data["description"]