diff options
author | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-07-04 11:52:08 +0200 |
---|---|---|
committer | lupoDharkael <izhe@hotmail.es> | 2024-07-09 09:52:21 +0200 |
commit | e532e9a0c86e1ad88862c2d2ce5ecc222403e966 (patch) | |
tree | 4c383cecfcfd50f76d2c43a1388e08be2a1492b9 /ogcp/forms | |
parent | 5111733b93adb4f64c77caa6baf74aca987ce897 (diff) |
ogcp: make client name field mandatory in client form
Add InputRequired validator to the name field of the
ClientDetailsForm.
Validate name value in the POST function.
Diffstat (limited to 'ogcp/forms')
-rw-r--r-- | ogcp/forms/action_forms.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ogcp/forms/action_forms.py b/ogcp/forms/action_forms.py index c111940..7fbaa79 100644 --- a/ogcp/forms/action_forms.py +++ b/ogcp/forms/action_forms.py @@ -126,7 +126,8 @@ class FolderForm(FlaskForm): class ClientDetailsForm(FlaskForm): server = HiddenField() - name = StringField(label=_l('Name')) + name = StringField(label=_l('Name'), + validators=[InputRequired()]) ip = StringField(label=_l('IP'), validators=[InputRequired()]) mac = StringField(label=_l('MAC'), |