dossiers: limit cols to 70 for comments

Closes #4587
This commit is contained in:
Jérôme Schneider 2014-04-01 19:59:35 +02:00
parent f4b7be1c80
commit 07de57f5c8
1 changed files with 1 additions and 1 deletions

View File

@ -168,7 +168,7 @@ class FamilyForm(ModelForm):
'family_situation', 'child_custody', 'job_mother', 'job_father',
'rm_mother', 'rm_father', 'family_comment')
widgets = {
'family_comment': forms.Textarea(attrs={'cols': 100, 'rows': 1}),
'family_comment': forms.Textarea(attrs={'cols': 70, 'rows': 2}),
}
class TransportFrom(ModelForm):