Event dashboard: Make comment text box larger

This commit is contained in:
Raphael Michel
2023-06-09 13:33:47 +02:00
parent 74e9a4ad2d
commit cf732ce173

View File

@@ -1396,7 +1396,7 @@ class CommentForm(I18nModelForm):
fields = ['comment']
widgets = {
'comment': forms.Textarea(attrs={
'rows': 3,
'rows': 6,
'class': 'helper-width-100',
}),
}