summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeif Johansson <leifj@sunet.se>2011-06-19 23:36:22 +0200
committerLeif Johansson <leifj@sunet.se>2011-06-19 23:36:22 +0200
commitdb6a38249c1f9fdcaa46d1eaffa91ae067aeefca (patch)
treebdca241a0f6d06cf9dda5466469bc1dba38e1cd0
parente3bbbd38ff4387a915fd8525fe524145a29ed1f0 (diff)
wider textarea
-rw-r--r--coip/apps/name/forms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/coip/apps/name/forms.py b/coip/apps/name/forms.py
index 0e77a22..695ba8a 100644
--- a/coip/apps/name/forms.py
+++ b/coip/apps/name/forms.py
@@ -23,7 +23,7 @@ class NameEditForm(BetterModelForm):
class Meta:
model = Name
fields = ['short','description','format']
- widgets = {'description': forms.Textarea(attrs={'cols': 62, 'rows': 6}),
+ widgets = {'description': forms.Textarea(attrs={'cols': 68, 'rows': 6}),
'short': forms.TextInput(attrs={'size': 40})}
fieldsets = [('step1', {'fields': ['short', 'description'],
'legend': 'Name and Description',