Update text on some fields

This commit is contained in:
luis cielak 2018-08-13 13:22:32 -04:00
parent 23ae914211
commit 8f50fd2651

View File

@ -36,6 +36,7 @@ class RequestForm(ValidatedForm):
) )
jedi_migration = RadioField( jedi_migration = RadioField(
"JEDI Migration",
description="Are you using the JEDI Cloud to migrate existing systems?", description="Are you using the JEDI Cloud to migrate existing systems?",
choices=[("yes", "Yes"), ("no", "No")], choices=[("yes", "Yes"), ("no", "No")],
) )
@ -94,7 +95,7 @@ class RequestForm(ValidatedForm):
) )
cloud_native = RadioField( cloud_native = RadioField(
"Are your software systems being developed cloud native?", description="Are your software systems being developed cloud native?",
choices=[("yes", "Yes"), ("no", "No")], choices=[("yes", "Yes"), ("no", "No")],
) )