From 2295c6f3da0f02e2f080669deee47d7a4f8b9697 Mon Sep 17 00:00:00 2001 From: "Adrian A. Baumann" Date: Sun, 28 Dec 2025 23:04:59 +0100 Subject: [PATCH] Increase textarea rows for better error display --- boxes/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boxes/forms.py b/boxes/forms.py index e0945d0..c5a8093 100644 --- a/boxes/forms.py +++ b/boxes/forms.py @@ -12,7 +12,7 @@ class ThingForm(forms.ModelForm): widgets = { 'name': forms.TextInput(attrs={'class': 'form-control'}), 'thing_type': forms.Select(attrs={'class': 'form-control'}), - 'description': forms.Textarea(attrs={'class': 'form-control', 'rows': 2}), + 'description': forms.Textarea(attrs={'class': 'form-control', 'rows': 4}), }