Browse Source

Merge pull request #177 from communitiesuk/701-update-privacy-notice

CLDC-701 Update privacy notice
pull/176/head
Paul Robert Lloyd 3 years ago committed by GitHub
parent
commit
3f09dab60f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      app/views/form/_checkbox_question.html.erb
  2. 2
      app/views/form/_date_question.html.erb
  3. 2
      app/views/form/_numeric_question.html.erb
  4. 2
      app/views/form/_radio_question.html.erb
  5. 2
      app/views/form/_select_question.html.erb
  6. 2
      app/views/form/_text_question.html.erb
  7. 2
      app/views/form/_textarea_question.html.erb
  8. 4
      config/forms/2021_2022.json
  9. BIN
      public/files/privacy-notice.pdf

2
app/views/form/_checkbox_question.html.erb

@ -1,7 +1,7 @@
<%= f.govuk_check_boxes_fieldset question.id.to_sym,
caption: caption && !page_header.present? ? { text: caption.html_safe, size: "l" } : nil,
legend: { text: question.header.html_safe, size: !page_header.present? ? "l" : "m", tag: !page_header.present? ? "h1" : "h2" },
hint: { text: question.hint_text } do %>
hint: { text: question.hint_text.html_safe } do %>
<% question.answer_options.map do |key, val| %>
<% if key.starts_with?("divider") %>

2
app/views/form/_date_question.html.erb

@ -1,7 +1,7 @@
<%= f.govuk_date_field question.id.to_sym,
caption: caption && !page_header.present? ? { text: caption.html_safe, size: "l" } : nil,
legend: { text: question.header.html_safe, size: !page_header.present? ? "l" : "m", tag: !page_header.present? ? "h1" : "h2" },
hint: { text: question.hint_text },
hint: { text: question.hint_text.html_safe },
width: 20,
**stimulus_html_attributes(question)
%>

2
app/views/form/_numeric_question.html.erb

@ -1,7 +1,7 @@
<%= f.govuk_number_field question.id.to_sym,
caption: caption && !page_header.present? ? { text: caption.html_safe, size: "l" } : nil,
label: { text: question.header.html_safe, size: !page_header.present? ? "l" : "m", tag: !page_header.present? ? "h1" : "h2" },
hint: { text: question.hint_text },
hint: { text: question.hint_text.html_safe },
min: question.min, max: question.max, step: question.step,
width: question.width, :readonly => question.read_only?,
**stimulus_html_attributes(question)

2
app/views/form/_radio_question.html.erb

@ -1,7 +1,7 @@
<%= f.govuk_radio_buttons_fieldset question.id.to_sym,
caption: caption && !page_header.present? ? { text: caption.html_safe, size: "l" } : nil,
legend: { text: question.header.html_safe, size: !page_header.present? ? "l" : "m", tag: !page_header.present? ? "h1" : "h2" },
hint: { text: question.hint_text } do %>
hint: { text: question.hint_text.html_safe } do %>
<% question.answer_options.map do |key, val| %>
<% if key.starts_with?("divider") %>

2
app/views/form/_select_question.html.erb

@ -5,5 +5,5 @@
:name,
caption: caption && !page_header.present? ? { text: caption.html_safe, size: "l" } : nil,
label: { text: question.header, size: !page_header.present? ? "l" : "m", tag: !page_header.present? ? "h1" : "h2" },
hint: { text: question.hint_text }
hint: { text: question.hint_text.html_safe }
%>

2
app/views/form/_text_question.html.erb

@ -1,7 +1,7 @@
<%= f.govuk_text_field question.id.to_sym,
caption: caption && !page_header.present? ? { text: caption.html_safe, size: "l" } : nil,
label: { text: question.header.html_safe, size: !page_header.present? ? "l" : "m", tag: !page_header.present? ? "h1" : "h2" },
hint: { text: question.hint_text },
hint: { text: question.hint_text.html_safe },
width: question.width ? question.width : nil,
**stimulus_html_attributes(question)
%>

2
app/views/form/_textarea_question.html.erb

@ -1,7 +1,7 @@
<%= f.govuk_text_area question.id.to_sym,
caption: caption && !page_header.present? ? { text: caption.html_safe, size: "l" } : nil,
label: { text: question.header.html_safe, size: !page_header.present? ? "l" : "m", tag: !page_header.present? ? "h1" : "h2" },
hint: { text: question.hint_text },
hint: { text: question.hint_text.html_safe },
width: question.width ? question.width : nil,
**stimulus_html_attributes(question)
%>

4
config/forms/2021_2022.json

@ -15,8 +15,8 @@
"questions": {
"gdpr_acceptance": {
"check_answer_label": "Privacy notice seen",
"header": "Has the tenant or buyer seen the DLUHC privacy notice?",
"hint_text": "",
"header": "Has the tenant or buyer seen the Department for Levelling Up, Housing and Communities (DLUHC) privacy notice?",
"hint_text": "You must <a class=\"govuk-link\" href=\"/files/privacy-notice.pdf\">show the privacy notice</a> to the tenant or buyer before you can use this service.",
"type": "radio",
"answer_options": {
"0": "Yes",

BIN
public/files/privacy-notice.pdf

Binary file not shown.
Loading…
Cancel
Save