diff options
Diffstat (limited to 'ogcp')
-rw-r--r-- | ogcp/forms/action_forms.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ogcp/forms/action_forms.py b/ogcp/forms/action_forms.py index bb66881..718bd3d 100644 --- a/ogcp/forms/action_forms.py +++ b/ogcp/forms/action_forms.py @@ -136,10 +136,10 @@ class ClientDetailsForm(FlaskForm): choices=[('ogLive', 'Default'),]) remote = BooleanField(label=_l('Remote')) maintenance = BooleanField(label=_l('Maintenance')) - repo = SelectField(label=_l('Repository')) - room = SelectField(label=_l('Room')) + repo = SelectField(label=_l('Repository'), validate_choice=False) + room = SelectField(label=_l('Room'), validate_choice=False) folder_id = HiddenField() - boot = SelectField(label=_l('Boot Mode')) + boot = SelectField(label=_l('Boot Mode'), validate_choice=False) submit = SubmitField(label=_l('Submit')) class ImportClientsForm(FlaskForm): |