14 lines
859 B
14 lines
859 B
<%= render partial: "form/guidance/#{question.top_guidance_partial}" if question.top_guidance? %> |
|
<%= render partial: "components/date_picker", locals: |
|
{ |
|
resource: @log, |
|
question_id: question.id, |
|
legend: { text: legend(question, page_header, conditional)[:text], size: "l", caption: caption(caption_text, page_header, conditional) }, |
|
resource_type: @log.log_type, |
|
hint: (question.hint_text.blank? ? "" : (question.hint_text.html_safe + "</br></br>".html_safe)) + "For example, #{date_mid_collection_year_formatted(@log.startdate).tr(' ', '/')}", |
|
f:, |
|
} %> |
|
|
|
<%= govuk_inset_text(text: question.unresolved_hint_text) if question.unresolved_hint_text.present? && @log.unresolved %> |
|
|
|
<%= render partial: "form/guidance/#{question.bottom_guidance_partial}" if question.bottom_guidance? %>
|
|
|