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.
22 lines
892 B
22 lines
892 B
<%= govuk_panel( |
|
title_text: display_title_text(title_text, lettings_log), |
|
classes: "app-panel--interruption", |
|
) do %> |
|
<p class="govuk-panel__body"><%= display_informative_text(informative_text, lettings_log) %></p> |
|
<%= f.govuk_radio_buttons_fieldset question.id.to_sym, |
|
legend: { text: question.header }, |
|
hint: { text: question.hint_text&.html_safe } do %> |
|
<% question.answer_options.map do |key, options| %> |
|
<% if key.starts_with?("divider") %> |
|
<%= f.govuk_radio_divider %> |
|
<% else %> |
|
<%= f.govuk_radio_button question.id, |
|
key, |
|
label: { text: options["value"] }, |
|
hint: { text: options["hint"] }, |
|
**stimulus_html_attributes(question) %> |
|
<% end %> |
|
<% end %> |
|
<% end %> |
|
<%= f.govuk_submit "Save and continue", accesskey: "s", class: "app-button--inverse govuk-!-margin-bottom-0" %> |
|
<% end %>
|
|
|