Skip to content

Commit

Permalink
Merge branch 'verification-lops' into content-changes
Browse files Browse the repository at this point in the history
  • Loading branch information
syed87 authored Nov 2, 2023
2 parents 8067415 + 88c348d commit 7a319e8
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ def index

@professional_standing_request =
assessment.professional_standing_request if assessment.professional_standing_request.verify_failed?

render layout: "full_from_desktop"
end

private
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,15 @@
<li> send the email to the relevant teaching authority</li>
</ul>

<p class="govuk-body">
Do you want to mark this task as completed or come back after you have sent the email from Zendesk?
<p class="govuk-body govuk-!-padding-top-6">
Do you want to mark this task as completed and come back after you have sent the email from Zendesk?
</p>

<%= form_with model: @form, url: [:request, :assessor_interface, @application_form, @assessment, :professional_standing_request] do |f| %>
<%= f.govuk_radio_button :passed, :true, label: { text: "Yes, mark as completed" }, link_errors: true %>
<%= f.govuk_radio_button :passed, :false, label: { text: "No, come back later" } %>
<%= f.govuk_radio_buttons_fieldset :passed, legend: nil do %>
<%= f.govuk_radio_button :passed, :true, label: { text: "Yes, mark as completed" }, link_errors: true %>
<%= f.govuk_radio_button :passed, :false, label: { text: "No, come back later" } %>
<% end %>

<%= f.govuk_submit do %>
<%= govuk_link_to "Cancel", [:assessor_interface, @application_form, @assessment, :professional_standing_request] %>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,6 @@
end
end %>

<%= govuk_button_link_to "Back to overview", [:assessor_interface, @application_form] %>
<div class="govuk-!-padding-top-3">
<%= govuk_button_link_to "Back to overview", [:assessor_interface, @application_form] %>
</div>

0 comments on commit 7a319e8

Please sign in to comment.