diff options
author | Filipp Lepalaan <filipp@mac.com> | 2016-11-11 01:09:06 +0200 |
---|---|---|
committer | Filipp Lepalaan <filipp@mac.com> | 2016-11-11 01:09:06 +0200 |
commit | 21ea1c543918660eaf2d85b3760746557ece039c (patch) | |
tree | 69fe8ef66b73c35314992e07dc7efeb8cf5996f5 /servo/forms | |
parent | 37d98e8288469fc1d2df9e5589f1f94169e0c435 (diff) | |
download | Servo-21ea1c543918660eaf2d85b3760746557ece039c.tar.gz Servo-21ea1c543918660eaf2d85b3760746557ece039c.tar.bz2 Servo-21ea1c543918660eaf2d85b3760746557ece039c.zip |
Cleanup
Diffstat (limited to 'servo/forms')
-rw-r--r-- | servo/forms/devices.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/servo/forms/devices.py b/servo/forms/devices.py index e3c1dae..8d41c02 100644 --- a/servo/forms/devices.py +++ b/servo/forms/devices.py @@ -12,12 +12,10 @@ product_lines = [(k, x['name']) for k, x in Device.PRODUCT_LINES.items()] class DeviceSearchForm(forms.Form): product_line = forms.MultipleChoiceField( - #widget=forms.CheckboxSelectMultiple, choices=product_lines, required=False ) warranty_status = forms.MultipleChoiceField( - #widget=forms.CheckboxSelectMultiple, choices=Device.WARRANTY_CHOICES, required=False, ) @@ -73,4 +71,3 @@ class DeviceUploadForm(forms.Form): class DiagnosticsForm(forms.Form): pass - |