Skip to content
This repository has been archived by the owner on Dec 27, 2024. It is now read-only.

Commit

Permalink
Refactor themes_mapping.py to use common questions for HSRA themes
Browse files Browse the repository at this point in the history
  • Loading branch information
hamzabinkhalid authored and sfount committed Dec 27, 2024
1 parent 449a8d1 commit 636f343
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions assess/config/themes_mapping.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
def ordered_themes(fund_round_short_name):
common_questions_hsra = [
"what-would-you-like-to-name-your-application?",
"by-submitting-this-application,-you-confirm-that-the-information-you-have-provided-is-correct.",
"who-is-your-section-151-officer?",
"who-should-we-contact-about-this-application?",
]
if fund_round_short_name == "COF-EOIR1":
return [
"organisation-details",
Expand Down Expand Up @@ -123,11 +129,7 @@ def ordered_themes(fund_round_short_name):
if fund_round_short_name == "CTDFCR1":
return ["project_name", "organisation_name"]
if fund_round_short_name == "HSRAVR":
return [
"what-would-you-like-to-name-your-application?",
"by-submitting-this-application,-you-confirm-that-the-information-you-have-provided-is-correct.",
"who-is-your-section-151-officer?",
"who-should-we-contact-about-this-application?",
return common_questions_hsra + [
"tell-us-more-about-the-designated-area.",
"which-town-or-city-will-the-designated-area-be-located-in?",
"when-do-you-expect-the-vacancy-register-to-be-completed?",
Expand All @@ -136,12 +138,8 @@ def ordered_themes(fund_round_short_name):
"upload-the-quote-for-the-vacancy-register",
]
if fund_round_short_name == "HSRARP":
return [
"what-would-you-like-to-name-your-application?",
"by-submitting-this-application,-you-confirm-that-the-information-you-have-provided-is-correct.",
"who-is-your-section-151-officer?",
return common_questions_hsra + [
"which-local-authority-are-you-applying-from?",
"who-should-we-contact-about-this-application?",
"upload-the-initial-notice-you-served-the-landlord",
"what-is-the-total-commercial-floorspace-of-the-property,-in-meters-squared?",
"what-is-the-vacant-property's-address?",
Expand Down

0 comments on commit 636f343

Please sign in to comment.