Adding placeholder text in the presentation proposal form #1

Closed
Jason van Gumster wants to merge 16 commits from (deleted):proposal_placeholders into staging

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
Showing only changes of commit 52006df21d - Show all commits

View File

@ -37,7 +37,11 @@ class PresentationForm(forms.ModelForm):
class MessageForm(forms.Form): class MessageForm(forms.Form):
message = forms.CharField(widget=forms.Textarea) message = forms.CharField(widget=forms.Textarea(
attrs={'placeholder': '''
(Main Stage, 20 minutes)\n\nThis totally awesome talk is going to be about...
'''
))
class FestivalEntryForm(forms.ModelForm): class FestivalEntryForm(forms.ModelForm):