-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3181 from DFE-Digital/LUPEYALPHA-991/view-full-claim
LUPEYALPHA 991/view full claim
- Loading branch information
Showing
15 changed files
with
929 additions
and
27 deletions.
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
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
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
21 changes: 21 additions & 0 deletions
21
app/views/admin/claims/policies/early_career_payments/_claim.html.erb
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,21 @@ | ||
<div class="govuk-grid-row"> | ||
<div class="govuk-grid-column-two-thirds"> | ||
<%= render "admin/claims/answer_section", {heading: "Personal details", answers: admin_personal_details(@claim)} %> | ||
|
||
<%= render "admin/claims/answer_section", {heading: "Eligibility details", answers: admin_eligibility_answers(@claim)} %> | ||
|
||
<% if @claim.policy_options_provided.present? %> | ||
<%= render "admin/claims/answer_section", {heading: "Policy options provided", answers: admin_policy_options_provided(@claim)} %> | ||
<% end %> | ||
|
||
<%= render "admin/claims/answer_section", {heading: "Student loan details", answers: admin_student_loan_details(@claim)} %> | ||
|
||
<%= render "admin/claims/answer_section", {heading: "Submission details", answers: admin_submission_details(@claim)} %> | ||
|
||
<%= render("claims_with_matching_details", {matching_claims: @matching_claims, claim: @claim, show_caption: true}) if @matching_claims.any? %> | ||
|
||
<% if @decision.persisted? %> | ||
<%= render "admin/claims/answer_section", {heading: "Claim decision details", answers: admin_decision_details(@decision)} %> | ||
<% end %> | ||
</div> | ||
</div> |
17 changes: 17 additions & 0 deletions
17
app/views/admin/claims/policies/early_years_payments/_claim.html.erb
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,17 @@ | ||
<div class="govuk-grid-row"> | ||
<div class="govuk-grid-column-two-thirds"> | ||
<%= render "admin/claims/answer_section", {heading: "Personal details", answers: admin_personal_details(@claim)} %> | ||
|
||
<%= render "admin/claims/answer_section", {heading: "Eligibility details", answers: admin_eligibility_answers(@claim)} %> | ||
|
||
<%= render "admin/claims/answer_section", {heading: "Student loan details", answers: admin_student_loan_details(@claim)} %> | ||
|
||
<%= render "admin/claims/answer_section", {heading: "Submission details", answers: admin_submission_details(@claim)} %> | ||
|
||
<%= render("claims_with_matching_details", {matching_claims: @matching_claims, claim: @claim, show_caption: true}) if @matching_claims.any? %> | ||
|
||
<% if @decision.persisted? %> | ||
<%= render "admin/claims/answer_section", {heading: "Claim decision details", answers: admin_decision_details(@decision)} %> | ||
<% end %> | ||
</div> | ||
</div> |
Oops, something went wrong.