Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,6 @@ class ManageLocalCouncilAdminsController(
}

model.addAttribute("inviteAnotherUserUrl", INVITE_LOCAL_COUNCIL_ADMIN_ROUTE)
// TODO PRSD-672: Add link to the system operator dashboard
model.addAttribute("dashboardUrl", "#")

return "inviteLocalCouncilAdminConfirmation"
}
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,9 @@ <h2 class="govuk-heading-m" th:text="#{common.confirmationPage.whatHappensNext}"
<p class="govuk-body" th:text="#{forms.inviteLocalCouncilAdminUserConfirmation.whatHappensNext.paragraph.three(${localCouncilName})}">
forms.inviteLocalCouncilAdminUserConfirmation.whatHappensNext.paragraph.three
</p>
<div class="govuk-button-group">
<a th:replace="~{fragments/buttons/primaryButtonLink :: primaryButtonLink(@{${inviteAnotherUserUrl}}, #{addLocalCouncilUserSuccess.inviteAnother})}">
addLocalCouncilUserSuccess.inviteAnother
</a>
<!--TODO PRSD-672 - replace with an enabled button-->
<a th:replace="~{fragments/buttons/disabledSecondaryButtonLink :: disabledSecondaryButtonLink(@{${dashboardUrl}}, #{addLocalCouncilUserSuccess.returnToDashboard})}">
Comment thread
JasminConterioSW marked this conversation as resolved.
addLocalCouncilUserSuccess.returnToDashboard
</a>
</div>
<a th:replace="~{fragments/buttons/primaryButtonLink :: primaryButtonLink(@{${inviteAnotherUserUrl}}, #{addLocalCouncilUserSuccess.inviteAnother})}">
addLocalCouncilUserSuccess.inviteAnother
</a>
</div>
</main>
</html>
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,6 @@ class InviteLocalCouncilAdminTests : IntegrationTestWithMutableData("data-local.
// Invite another user
confirmationPage.inviteAnotherUserButton.clickAndWait()
assertPageIs(page, InviteLocalCouncilAdminPage::class)

// TODO PRSD-672 - check the Return to Dashboard button
}

@Test
Expand Down
Loading