feature/boxform #2

Merged
adebaumann merged 3 commits from feature/boxform into master 2025-12-28 22:12:07 +00:00
Showing only changes of commit 2295c6f3da - Show all commits

View File

@@ -12,7 +12,7 @@ class ThingForm(forms.ModelForm):
widgets = { widgets = {
'name': forms.TextInput(attrs={'class': 'form-control'}), 'name': forms.TextInput(attrs={'class': 'form-control'}),
'thing_type': forms.Select(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}),
} }