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 @@ -65,7 +65,7 @@ LEFT OUTER JOIN CompetencyAssessmentQuestionRoleRequirements rr
ON s.CompetencyID = rr.CompetencyID AND s.AssessmentQuestionID = rr.AssessmentQuestionID AND s.SelfAssessmentID = rr.SelfAssessmentID

WHERE CandidateID = @candidateId
AND SelfAssessmentID = @selfAssessmentId
AND s.SelfAssessmentID = @selfAssessmentId
)";
private const string SpecificAssessmentResults =
@"LatestAssessmentResults AS
Expand Down Expand Up @@ -215,8 +215,8 @@ INNER JOIN Competencies AS C
$@"WITH CompetencyRowNumber AS
(SELECT ROW_NUMBER() OVER (ORDER BY Ordering) as RowNo,
CompetencyID
FROM SelfAssessmentStructure
WHERE SelfAssessmentID = @selfAssessmentId
FROM SelfAssessmentStructure as sas
WHERE sas.SelfAssessmentID = @selfAssessmentId
),
{LatestAssessmentResults}
SELECT {CompetencyFields}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ else
Back
</a>
<button class="nhsuk-button" type="submit">
Continue
Next
</button>
<div class="nhsuk-back-link">
<a class="nhsuk-back-link__link" asp-action="ViewFrameworks" asp-route-tabname="Mine">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ else
Back
</a>
<button class="nhsuk-button" type="submit">
Continue
Next
</button>
<div class="nhsuk-back-link">
<a class="nhsuk-back-link__link" asp-action="ViewFrameworks" asp-route-tabname="Mine">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ else
@if ((string)ViewContext.RouteData.Values["actionname"] == "New")
{
<button class="nhsuk-button" type="submit">
Continue
Next
</button>
<div class="nhsuk-back-link">
<a class="nhsuk-back-link__link" asp-action="ViewFrameworks" asp-route-tabname="Mine">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ else
Back
</a>
<a class="nhsuk-button" asp-action="SaveNewFramework" asp-route-frameworkname="@Model.FrameworkName" asp-route-actionname="@(ViewContext.RouteData.Values["actionname"])">
Continue
Next
</a>
<div class="nhsuk-back-link">
<a class="nhsuk-back-link__link" asp-action="ViewFrameworks" asp-route-tabname="Mine">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,6 @@
</dd>
</div>
</dl>
<a class="nhsuk-button nhsuk-button--secondary" asp-action="SetNewFrameworkBrand" asp-route-actionname="New">
Back
</a>
<a class="nhsuk-button" asp-action="InsertFramework">
Save and Continue
</a>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ else
Back
</a>
<button class="nhsuk-button" type="submit">
Continue
Next
</button>
<div class="nhsuk-back-link">
<a class="nhsuk-back-link__link" asp-action="ViewFrameworks" asp-route-tabname="Mine">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ else
@if ((string)ViewContext.RouteData.Values["actionname"] == "New")
{
<button class="nhsuk-button" type="submit">
Continue
Next
</button>
<div class="nhsuk-back-link">
<a class="nhsuk-back-link__link" asp-action="ViewRoleProfiles" asp-route-tabname="Mine">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ else
Back
</a>
<button class="nhsuk-button" type="submit">
Continue
Next
</button>
<div class="nhsuk-back-link">
<a class="nhsuk-back-link__link" asp-action="ViewRoleProfiles" asp-route-tabname="Mine">
Expand Down