-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #738 from bitzesty/ll-guidance
chore: Update KAVS local assessment guide link to 2025 version
- Loading branch information
Showing
11 changed files
with
1,094 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
require_relative 'qavs' | ||
|
||
class AwardYears::V2026::QaeForms | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
require_relative "qavs/qavs_step1" | ||
require_relative "qavs/qavs_step2" | ||
require_relative "qavs/qavs_step3" | ||
require_relative "qavs/qavs_step4" | ||
require_relative "qavs/qavs_step5" | ||
|
||
class AwardYears::V2026::QaeForms | ||
class << self | ||
def qavs | ||
@qavs ||= QaeFormBuilder.build "King's Award for Voluntary Service Nomination" do | ||
step "nominee", | ||
&AwardYears::V2026::QaeForms.qavs_step1 | ||
|
||
step "recommendation", | ||
&AwardYears::V2026::QaeForms.qavs_step2 | ||
|
||
step "letters_of_support", | ||
{ id: :letters_of_support_step }, | ||
&AwardYears::V2026::QaeForms.qavs_step3 | ||
|
||
step "submit_step", | ||
&AwardYears::V2026::QaeForms.qavs_step4 | ||
|
||
step "local_assessment_form", | ||
{ id: :local_assessment }, | ||
&AwardYears::V2026::QaeForms.qavs_step5 | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
# coding: utf-8 | ||
class AwardYears::V2026::QaeForms | ||
class << self | ||
def qavs_step1 | ||
@qavs_step1 ||= proc do | ||
notice %( | ||
<p class=govuk-body>Please note your answers are being saved automatically in the background.</p> | ||
) | ||
|
||
header :nominee_details_header, "Group details" do | ||
ref "A 1" | ||
end | ||
|
||
text :nominee_name, "Name of group" do | ||
sub_ref "A 1.1" | ||
required | ||
form_hint "<strong>It is important that the name is accurate, concise and spelt correctly</strong>, as this will appear on the Award certificate if your nomination succeeds. <strong>Please do not</strong> capitalise the group's name, include charity numbers, or include special characters.".html_safe | ||
style "large" | ||
end | ||
|
||
text :nominee_established_date, "When was the group established?" do | ||
sub_ref "A 1.2" | ||
required | ||
style "small" | ||
end | ||
|
||
dropdown :nominee_activity, "Please select the group's main area of activity" do | ||
sub_ref "A 1.3" | ||
required | ||
option "", "" | ||
nominee_activities | ||
end | ||
|
||
dropdown :secondary_activity, "Please select the group's secondary area of activity" do | ||
sub_ref "A 1.4" | ||
required | ||
option "", "" | ||
nominee_activities | ||
end | ||
|
||
address :nominee_address, "Address of group" do | ||
sub_ref "A 1.5" | ||
required | ||
sub_fields([ | ||
{ building: "Building" }, | ||
{ street: "Street" }, | ||
{ city: "Town or city" }, | ||
{ county: "County" }, | ||
{ postcode: "Postcode" } | ||
]) | ||
end | ||
|
||
text :nominee_phone, "Telephone number" do | ||
sub_ref "A 1.6" | ||
style "small" | ||
type "tel" | ||
end | ||
|
||
text :nominee_website, "Website" do | ||
sub_ref "A 1.7" | ||
style "large" | ||
end | ||
|
||
textarea :social_media, "Social media" do | ||
sub_ref "A 1.8" | ||
form_hint "If known, please insert a link to the group's social media below (Facebook, Instagram, Twitter, Linkedin)" | ||
words_max 100 | ||
rows 2 | ||
end | ||
|
||
header :nominee_leader_header, "About the group leader or main contact in the group" do | ||
ref "A 2" | ||
context %( | ||
<p class='govuk-hint'>This is the person the County Assessment Panel will contact to ask any questions or arrange a visit.</p> | ||
) | ||
end | ||
|
||
text :nominee_leader_name, "Name of the group leader or main contact in the group" do | ||
sub_ref "A 2.1" | ||
required | ||
style "small" | ||
end | ||
|
||
text :nominee_leader_position, "Position held in the group" do | ||
sub_ref "A 2.2" | ||
required | ||
style "large" | ||
end | ||
|
||
address :nominee_leader_address, "Address of main contact" do | ||
sub_ref "A 2.3" | ||
required | ||
sub_fields([ | ||
{ building: "Building" }, | ||
{ street: "Street" }, | ||
{ city: "Town or city" }, | ||
{ county: "County" }, | ||
{ postcode: "Postcode" } | ||
]) | ||
end | ||
|
||
text :nominee_leader_email, "Email" do | ||
sub_ref "A 2.4" | ||
required | ||
type "email" | ||
style "large" | ||
end | ||
|
||
text :nominee_leader_telephone, "Telephone" do | ||
sub_ref "A 2.5" | ||
style "small" | ||
type "tel" | ||
end | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
# -*- coding: utf-8 -*- | ||
class AwardYears::V2026::QaeForms | ||
class << self | ||
def qavs_step2 | ||
@qavs_step2 ||= proc do | ||
notice %( | ||
<p class=govuk-body>Please note your answers are being saved automatically in the background.</p> | ||
) | ||
|
||
header :recommendation, "About this section" do | ||
help "About this section", %( | ||
<p class='govuk-body'> | ||
In this section, please explain how the nominated group has made a significant contribution in its area of activity. We are looking for groups that: | ||
<span class='indented'>- Give excellent service to their beneficiaries and communities</span> | ||
<span class='indented'>- Deliver their service in innovative ways</span> | ||
<span class='indented'>- Show other examples of selfless voluntary service that distinguish their work</span> | ||
</p> | ||
<p class='govuk-body'> | ||
Please avoid using 'we' or 'our' in this section as this gives an indication that the person making the nomination is involved in the running of the group's work. It is recommended that you use 'their' or 'the group's work'. | ||
</p> | ||
<p class='govuk-body'> | ||
<strong>Please answer each question, noting the word limits, explaining what achievements make the nominated group stand out from others.</strong> | ||
</p> | ||
) | ||
end | ||
|
||
textarea :group_activities, "Please summarise the activities of the group" do | ||
ref "B 1" | ||
required | ||
words_max 50 | ||
rows 2 | ||
end | ||
|
||
textarea :beneficiaries, "Who are the beneficiaries (the people it helps) and where do they live?" do | ||
ref "B 2" | ||
required | ||
words_max 30 | ||
rows 2 | ||
end | ||
|
||
textarea :benefits, "What are the benefits of the group's work?" do | ||
ref "B 3" | ||
required | ||
words_max 100 | ||
rows 2 | ||
end | ||
|
||
textarea :volunteers, "This Award is specifically for groups that rely on significant and committed work by volunteers. Please explain what the volunteers do and what makes this particular group of volunteers so impressive?" do | ||
ref "B 4" | ||
required | ||
words_max 200 | ||
rows 5 | ||
end | ||
|
||
checkbox_seria :how_did_you_hear_about_award, "How did you hear about the Award this year?" do | ||
ref "B 5" | ||
required | ||
context %( | ||
<p class='govuk-hint'>Select all that apply.</p> | ||
) | ||
check_options [ | ||
["national_newspaper", "National newspaper"], | ||
["local_newspaper", "Local newspaper"], | ||
["tv_radio", "TV/radio"], | ||
["internet", "Internet"], | ||
["word_of_mouth", "Word of mouth"], | ||
["previous_winner", "Previous winner/entrant"], | ||
["charity", "Voluntary organisation/charity"], | ||
["event", "Local event"], | ||
["library", "Local library"], | ||
["council", "Local Council"], | ||
["other", "Other"] | ||
] | ||
end | ||
|
||
textarea :how_did_you_hear_about_award_other_details, "" do | ||
required | ||
context %( | ||
<p class='govuk-hint'>Please outline any other sources in the text box below:</p> | ||
) | ||
conditional :how_did_you_hear_about_award, "other" | ||
end | ||
end | ||
end | ||
end | ||
end |
Oops, something went wrong.