diff options
Diffstat (limited to 'core/forms.py')
-rw-r--r-- | core/forms.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/forms.py b/core/forms.py index 7f33e05..a7b000f 100644 --- a/core/forms.py +++ b/core/forms.py @@ -158,7 +158,8 @@ class UploadFileForm(forms.Form): def __init__(self): title = forms.CharField(max_length=50) file = forms.FileField() - html = forms.CharField(widget=TinyMCE(attrs={'cols': 80, 'rows': 30})) + #html = forms.CharField(widget=TinyMCE(attrs={'cols': 80, 'rows': 30})) + html = forms.CharField(widget=forms.Textarea(attrs={"cols":80, "rows":20})) lon_utm = forms.FloatField(required=False) lat_utm = forms.FloatField(required=False) slug = forms.CharField(max_length=50) |