summaryrefslogtreecommitdiffstats
path: root/ogcp/forms/action_forms.py
diff options
context:
space:
mode:
authorJavier Sánchez Parra <jsanchez@soleta.eu>2022-08-30 17:04:25 +0200
committerJavier Sánchez Parra <jsanchez@soleta.eu>2022-09-27 09:48:36 +0200
commit083caf00c61f9273522bb19a0cd89b83606808ec (patch)
tree015e9fc2ed0c7dfd7bd847da649fff70a803917e /ogcp/forms/action_forms.py
parent70eb7389bb5d9015196938d9a589c7d406f29364 (diff)
Adapt Delete image to work with several ogServers
This commit makes Delete image view to use ogServer field from imagesForm to send the deletion request to the correct ogServer.
Diffstat (limited to 'ogcp/forms/action_forms.py')
-rw-r--r--ogcp/forms/action_forms.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/ogcp/forms/action_forms.py b/ogcp/forms/action_forms.py
index a7bb5b4..dcf4965 100644
--- a/ogcp/forms/action_forms.py
+++ b/ogcp/forms/action_forms.py
@@ -18,6 +18,7 @@ from flask_babel import _
class GenericForm(FlaskForm):
ips = HiddenField()
ids = HiddenField()
+ server = HiddenField()
submit = SubmitField(label=_l('Submit'))