summaryrefslogtreecommitdiffstats
path: root/ogcp/forms
diff options
context:
space:
mode:
authorJavier Sánchez Parra <jsanchez@soleta.eu>2021-10-18 16:51:12 +0200
committerJavier Sánchez Parra <jsanchez@soleta.eu>2021-10-20 11:54:28 +0200
commitc493d243496e80016845aa16cfa59773cb75be71 (patch)
treebe65acc2fb4ad6faa4f0061224c85dfdc743025a /ogcp/forms
parent76d500fe2eb905f5cd835e64a99de3e1006df4d2 (diff)
Set tiptorrent as unique restore image method
Soleta Networks only offers support of tiptorrent for restore image transferences.
Diffstat (limited to 'ogcp/forms')
-rw-r--r--ogcp/forms/action_forms.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/ogcp/forms/action_forms.py b/ogcp/forms/action_forms.py
index d881065..d618f24 100644
--- a/ogcp/forms/action_forms.py
+++ b/ogcp/forms/action_forms.py
@@ -80,8 +80,7 @@ class ImageRestoreForm(FlaskForm):
partition = SelectField(label=_('Partition'), choices=[])
image = SelectField(label=_('Image'), choices=[])
method = SelectField(label=_('Method'),
- choices=[('UNICAST-CACHE', 'Unicast Cache'),
- ('UNICAST-DIRECT', 'Unicast Direct')])
+ choices=[('TIPTORRENT', 'TIPTORRENT')])
restore = SubmitField(label=_('Restore'))
class ClientDetailsForm(FlaskForm):