diff options
author | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-06-03 17:21:12 +0200 |
---|---|---|
committer | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-06-03 17:26:09 +0200 |
commit | 43e3346a4a0a2e2f1cea1c3d6f03bfab780a636f (patch) | |
tree | 877cd2ba09981cf4c283c20e50965dd66d2fe9d9 /ogcp/views.py | |
parent | cf6794d7c811dfaa8c0a69225598b5f061b45f96 (diff) |
forms: ensure ip and mac are not empty in client add form
Use the WTForms validator InputRequired to check the field
and disable the submit button if either the IP or MAC fields
have no contents.
Diffstat (limited to 'ogcp/views.py')
-rw-r--r-- | ogcp/views.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ogcp/views.py b/ogcp/views.py index b31d8dc..16e39b6 100644 --- a/ogcp/views.py +++ b/ogcp/views.py @@ -1472,6 +1472,11 @@ def action_folder_add_post(): def action_client_add(): form = ClientDetailsForm(request.form) if request.method == 'POST': + + if not form.validate(): + flash(form.errors, category='error') + return redirect(url_for('servers')) + payload = {"boot": form.boot.data, "ip": form.ip.data, "livedir": form.livedir.data, |