mirror of
https://github.com/SectorLabs/django-localized-fields.git
synced 2025-06-28 06:13:19 +03:00
Use Textarea widget for LocalizedFieldWidget
This commit is contained in:
parent
7d5f39d147
commit
39a573e1d2
@ -16,7 +16,7 @@ class LocalizedFieldWidget(MultiWidget):
|
|||||||
widgets = []
|
widgets = []
|
||||||
|
|
||||||
for _ in settings.LANGUAGES:
|
for _ in settings.LANGUAGES:
|
||||||
widgets.append(forms.TextInput())
|
widgets.append(forms.Textarea())
|
||||||
|
|
||||||
super(LocalizedFieldWidget, self).__init__(widgets, *args, **kwargs)
|
super(LocalizedFieldWidget, self).__init__(widgets, *args, **kwargs)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user