diff options
Diffstat (limited to 'ogcp')
-rw-r--r-- | ogcp/forms/action_forms.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ogcp/forms/action_forms.py b/ogcp/forms/action_forms.py index 34f06b4..bb66881 100644 --- a/ogcp/forms/action_forms.py +++ b/ogcp/forms/action_forms.py @@ -104,7 +104,9 @@ class ImageRestoreForm(FlaskForm): partition = SelectField(label=_l('Partition'), choices=[]) image = SelectField(label=_l('Image'), choices=[]) method = SelectField(label=_l('Method'), - choices=[('TIPTORRENT', 'TIPTORRENT')]) + choices=[('TIPTORRENT', 'TIPTORRENT'), + ('UNICAST', 'UNICAST'), + ('UNICAST-DIRECT', 'UNICAST-DIRECT')]) restore = SubmitField(label=_l('Restore')) class RepoForm(FlaskForm): |