aboutsummaryrefslogtreecommitdiffstats
path: root/servo/forms/checkin.py
diff options
context:
space:
mode:
Diffstat (limited to 'servo/forms/checkin.py')
-rw-r--r--servo/forms/checkin.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/servo/forms/checkin.py b/servo/forms/checkin.py
index 31d28b5..b3ed0d0 100644
--- a/servo/forms/checkin.py
+++ b/servo/forms/checkin.py
@@ -17,7 +17,7 @@ from servo.validators import (apple_sn_validator,
from servo.forms.base import SearchFieldInput
from servo.models import (Configuration, Device,
Attachment, Location,
- Customer,)
+ Customer, Queue,)
# Generate list of years for purchase date picker
@@ -69,6 +69,11 @@ class DeviceForm(forms.ModelForm):
help_text=_("Please describe the condition of the device")
)
+ queue = forms.ModelChoiceField(label=_('Queue'),
+ required=False,
+ queryset=Queue.objects.all(),
+ help_text=_('Assign order to this queue'))
+
class Meta:
model = Device
fields = (
@@ -233,7 +238,6 @@ class IssueForm(forms.Form):
issue_description = forms.CharField(
min_length=10,
- #initial='Does not work very well',
label=_(u'Problem description'),
widget=forms.Textarea(attrs={'class': 'span12'})
)