You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
1.1 KiB
20 lines
1.1 KiB
<%= render partial: "form/guidance/#{question.guidance_partial}" if question.top_guidance? %> |
|
|
|
<% selected = @log.public_send(question.id) || "" %> |
|
<% answers = question.displayed_answer_options(@log, current_user).map { |key, value| OpenStruct.new(id: key, name: value.respond_to?(:service_name) ? value.service_name : nil, resource: value) } %> |
|
<%= f.govuk_select(question.id.to_sym, |
|
label: legend(question, page_header, conditional), |
|
"data-controller": "accessible-autocomplete", |
|
caption: caption(caption_text, page_header, conditional), |
|
hint: { text: question.hint_text&.html_safe }) do %> |
|
<% answers.each do |answer| %> |
|
<option value="<%= answer.id %>" |
|
data-synonyms="<%= answer_option_synonyms(answer.resource) %>" |
|
data-append="<%= answer_option_append(answer.resource) %>" |
|
data-hint="<%= answer_option_hint(answer.resource) %>" |
|
<%= question.answer_selected?(@log, answer) ? "selected" : "" %> |
|
<%= answer.id == "" ? "disabled" : "" %>><%= answer.name || answer.resource %></option> |
|
<% end %> |
|
<% end %> |
|
|
|
<%= render partial: "form/guidance/#{question.guidance_partial}" if question.bottom_guidance? %>
|
|
|