Create form class for app env settings

This commit is contained in:
leigh-mil
2019-04-18 14:04:09 -04:00
parent 1d466ff1d4
commit 5de1b859db
2 changed files with 18 additions and 0 deletions

View File

@@ -1,4 +1,5 @@
from atst.utils.localization import translate, translate_duration
from atst.models.environment_role import CSPRole
SERVICE_BRANCHES = [
@@ -215,3 +216,5 @@ REQUIRED_DISTRIBUTIONS = [
("administrative_ko", "Administrative Contracting Officer"),
("other", "Other as necessary"),
]
ENV_ROLES = [(role.value, role.value) for role in CSPRole]