fix region choices list
This commit is contained in:
parent
9e52770ccd
commit
293db3d068
1 changed files with 1 additions and 2 deletions
|
@ -6,8 +6,7 @@ from wtforms.fields.html5 import EmailField, DecimalRangeField
|
||||||
from .. import db
|
from .. import db
|
||||||
|
|
||||||
class OrderForm(FlaskForm):
|
class OrderForm(FlaskForm):
|
||||||
region_choices = [(1, 'Plovdiv, Bulgaria')]
|
region_choices = [(1, 'Plovdiv, Bulgaria'), (2, 'International Space Station')]
|
||||||
region_choices = [(2, 'International Space Station')]
|
|
||||||
region = SelectField('Region:', choices=region_choices, coerce=int)
|
region = SelectField('Region:', choices=region_choices, coerce=int)
|
||||||
|
|
||||||
vmtype_choices = [(1, 'RootVPS')]
|
vmtype_choices = [(1, 'RootVPS')]
|
||||||
|
|
Loading…
Reference in a new issue