2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2026-01-20 20:04:51 +00:00

reduce size of text box

This commit is contained in:
2025-07-26 19:07:13 +02:00
parent 751f677c44
commit 786261fcfd

View File

@@ -506,7 +506,7 @@ class NewWebImageForm(forms.Form):
)
file_ = forms.FileField()
description = forms.CharField(
widget=forms.Textarea(attrs={"cols": 80, "rows": 20, "placeholder": "Describe the photo (using HTML)"}), required=False
widget=forms.Textarea(attrs={"cols": 80, "rows": 5, "placeholder": "Describe the photo (using HTML)"}), required=False
)
photographer = forms.CharField(
widget=forms.TextInput(attrs={"size": "60", "placeholder": "Photographers name"}), required=False