diff --git a/app/panel/forms.py b/app/panel/forms.py index 2d8734c..558d57a 100644 --- a/app/panel/forms.py +++ b/app/panel/forms.py @@ -6,8 +6,7 @@ from wtforms.fields.html5 import EmailField, DecimalRangeField from .. import db class OrderForm(FlaskForm): - region_choices = [(1, 'Plovdiv, Bulgaria')] - region_choices = [(2, 'International Space Station')] + region_choices = [(1, 'Plovdiv, Bulgaria'), (2, 'International Space Station')] region = SelectField('Region:', choices=region_choices, coerce=int) vmtype_choices = [(1, 'RootVPS')]