aboutsummaryrefslogtreecommitdiffstats
path: root/servo/forms/notes.py
diff options
context:
space:
mode:
authorFilipp Lepalaan <filipp@mac.com>2021-05-19 20:28:09 +0300
committerFilipp Lepalaan <filipp@mac.com>2021-05-19 20:28:09 +0300
commit32906d5bbc8afdbb1017fd7339315fafe2394007 (patch)
treecd32f805590405bce9d5e97e5167c04d1e884e1e /servo/forms/notes.py
parentce8012b7e4651eb3fa09849c3cef6fd027da87b6 (diff)
downloadServo-32906d5bbc8afdbb1017fd7339315fafe2394007.tar.gz
Servo-32906d5bbc8afdbb1017fd7339315fafe2394007.tar.bz2
Servo-32906d5bbc8afdbb1017fd7339315fafe2394007.zip
Make note type field editable
Diffstat (limited to 'servo/forms/notes.py')
-rw-r--r--servo/forms/notes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/servo/forms/notes.py b/servo/forms/notes.py
index b6ce1af..c433b7a 100644
--- a/servo/forms/notes.py
+++ b/servo/forms/notes.py
@@ -22,10 +22,10 @@ class NoteForm(BaseModelForm):
widgets = {
'recipient': TextInput,
'subject': TextInput,
+ 'type': forms.Select(attrs={'class': 'span12'}),
'order': forms.HiddenInput,
'parent': forms.HiddenInput,
'customer': forms.HiddenInput,
- 'type': forms.HiddenInput,
'labels': forms.CheckboxSelectMultiple,
}