-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[6401] Add bulk placements confirm page (#3793)
* [6401] Add bulk placements confirm page * [6401] PR feedback
- Loading branch information
Showing
4 changed files
with
31 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# frozen_string_literal: true | ||
|
||
module BulkUpdate | ||
class ConfirmationsController < ApplicationController | ||
before_action { require_feature_flag(:bulk_placements) } | ||
|
||
def show; end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<%= render PageTitle::View.new(i18n_key: "bulk_placements.confirmation.show") %> | ||
|
||
<div class="govuk-grid-row"> | ||
<div class="govuk-grid-column-two-thirds-from-desktop"> | ||
<%= govuk_panel(title_text: "Placement data submitted", classes: "trn-submission-success-panel govuk-!-margin-bottom-6") %> | ||
|
||
<p class="govuk-body"><%= govuk_link_to("View your trainee records", trainees_path) %></p> | ||
|
||
<h2 class="govuk-heading-m">Next steps</h2> | ||
|
||
|
||
<h3 class="govuk-heading-s">Trainees with incomplete records</h2> | ||
|
||
<p class="govuk-body">You can complete missing placement information to the trainee record manually.</p> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters