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.
12 lines
498 B
12 lines
498 B
3 years ago
|
<div class="govuk-form-group govuk-form-group--error">
|
||
|
<%= f.govuk_check_boxes_fieldset @case_log.soft_errors.keys.first,
|
||
|
legend: { text: @case_log.soft_errors.values.first.message, size: "l" },
|
||
|
hint: { text: @case_log.soft_errors.values.first.hint_text } do %>
|
||
|
|
||
|
<%= f.govuk_check_box @case_log.soft_errors.keys.first, @case_log.soft_errors.keys.first,
|
||
|
label: { text: "Yes" },
|
||
|
checked: f.object.send(@case_log.soft_errors.keys.first)
|
||
|
%>
|
||
|
<% end %>
|
||
|
</div>
|