I'm trying to set a default value in a text input field which gives the user an example of what to enter. This should be greyed-out and should disappear as soon as they start typing. I've tried setting an initial
value but this isn't automatically replaced when the user starts to type and is formatted the same as the user-entered answer.
form = VerbTestForm(initial={'answer': tip.tip})
What do I need to pass to my form to get the behaviour I'm looking for?