diff --git a/exporter/apply_for_a_licence/forms/triage_questions.py b/exporter/apply_for_a_licence/forms/triage_questions.py index 20a5ab7606..b400143c4f 100644 --- a/exporter/apply_for_a_licence/forms/triage_questions.py +++ b/exporter/apply_for_a_licence/forms/triage_questions.py @@ -26,6 +26,14 @@ def opening_question(): "before you provide access to controlled technology, software or data." ), ), + Option( + key="f680", + value="MOD F680", + description=( + "Select if you need approval to release security classified products or information to foreign entities." + ), + disabled=False, + ), Option( key="transhipment", value="Transhipment licence", @@ -53,7 +61,6 @@ def opening_question(): ), disabled=settings.FEATURE_FLAG_ONLY_ALLOW_SIEL, ), - Option(key="f680", value="F680", description=("Select if f680"), disabled=False), ] if settings.FEATURE_FLAG_ONLY_ALLOW_SIEL: description = render_to_string("applications/use-spire-triage.html") diff --git a/unit_tests/exporter/apply_for_a_licence/forms/test_triage_questions.py b/unit_tests/exporter/apply_for_a_licence/forms/test_triage_questions.py index 8aa85cae7e..9ee85241e9 100644 --- a/unit_tests/exporter/apply_for_a_licence/forms/test_triage_questions.py +++ b/unit_tests/exporter/apply_for_a_licence/forms/test_triage_questions.py @@ -8,7 +8,7 @@ "value,expect_enabled,expect_disabled", ( (True, ["export_licence", "f680"], ["transhipment", "trade_control_licence", "mod"]), - (False, ["export_licence", "transhipment", "trade_control_licence", "mod", "f680"], []), + (False, ["export_licence", "f680", "transhipment", "trade_control_licence", "mod"], []), ), ) def test_opening_question_feature_flag(settings, value, expect_enabled, expect_disabled):