summaryrefslogtreecommitdiff
path: root/coip/apps/name/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'coip/apps/name/forms.py')
-rw-r--r--coip/apps/name/forms.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/coip/apps/name/forms.py b/coip/apps/name/forms.py
index 47c7795..a68102e 100644
--- a/coip/apps/name/forms.py
+++ b/coip/apps/name/forms.py
@@ -16,11 +16,14 @@ class AttributeForm(forms.ModelForm):
model = Attribute
class NameEditForm(forms.ModelForm):
+ description = forms.CharField(widget=forms.Textarea(attrs={'cols': 85, 'rows': 10}))
+
class Meta:
model = Name
fields = ['short','description']
class NewNameForm(forms.ModelForm):
+ description = forms.CharField(widget=forms.Textarea(attrs={'cols': 85, 'rows': 10}))
class Meta:
model = Name
fields = ['type','value','short','description']