Skip to content

Commit e79591c

Browse files
committed
Added TextArea to demo app, fixes dyve#53
1 parent 20e436d commit e79591c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

demo_project/demo_app/forms.py

+5
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ class TestForm(forms.Form):
1010
max_length=100,
1111
help_text=u'This is the standard text input',
1212
)
13+
body = forms.CharField(
14+
max_length=100,
15+
help_text=u'This is a text area',
16+
widget=forms.Textarea(),
17+
)
1318
disabled = forms.CharField(
1419
max_length=100,
1520
help_text=u'I am disabled',

0 commit comments

Comments
 (0)