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 @@ -9,7 +9,7 @@ public class CompetencyAssessmentsTab : BaseTabEnumeration
nameof(MyCompetencyAssessments),
"CompetencyAssessments",
"ViewCompetencyAssessments",
"My Self-assessments",
"My self-assessments",
new Dictionary<string, string> { { "tabName", "Mine" } }
);

Expand All @@ -18,7 +18,7 @@ public class CompetencyAssessmentsTab : BaseTabEnumeration
nameof(AllCompetencyAssessments),
"CompetencyAssessments",
"ViewCompetencyAssessments",
"All Self-assessments",
"All self-assessments",
new Dictionary<string, string> { { "tabName", "All" } }
);

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
@using DigitalLearningSolutions.Web.ViewModels.CompetencyAssessments
@model AddCompetenciesViewModel;
@{
ViewData["Title"] = "Add Competencies to Self Assessment";
ViewData["Application"] = "Framework Service";
ViewData["Title"] = "Add Competencies to self-assessment";
ViewData["Application"] = "Framework service";
}
<link rel="stylesheet" href="@Url.Content("~/css/frameworks/frameworksShared.css")" asp-append-version="true">
@section NavMenuItems {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
@using DigitalLearningSolutions.Web.ViewModels.CompetencyAssessments
@model AddCompetenciesSelectFrameworkViewModel;
@{
ViewData["Title"] = "Select Framework Source";
ViewData["Application"] = "Framework Service";
ViewData["Title"] = "Select framework source";
ViewData["Application"] = "Framework service";
}
<link rel="stylesheet" href="@Url.Content("~/css/frameworks/frameworksShared.css")" asp-append-version="true">
@section NavMenuItems {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
@model CompetencyAssessmentFeaturesViewModel
@{
ViewData["Title"] = "Self-assessment features ";
ViewData["Application"] = "Framework Service";
ViewData["HeaderPathName"] = "Framework Service";
ViewData["Application"] = "Framework service";
ViewData["HeaderPathName"] = "Framework service";
}

@section NavMenuItems {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
@model OptionsLabelsViewModel
@{
ViewData["Title"] = "Self-assessment options and labels";
ViewData["Application"] = "Self-assessment Service";
ViewData["Application"] = "Self-assessment service";

var steps = new[]
{
Expand Down Expand Up @@ -87,7 +87,7 @@
</h1>
</legend>
<div id="example-hints-hint" class="nhsuk-hint">
Do you want to prompt learners to agree to the self assessment process when they first start the self assessment?
Do you want to prompt learners to agree to the self-assessment process when they first start the self-assessment?
</div>
<div class="nhsuk-radios" id="IncludeLearnerDeclarationPrompt">
<div class="nhsuk-radios__item">
Expand Down Expand Up @@ -117,7 +117,7 @@
</h1>
</legend>
<div id="example-hints-hint" class="nhsuk-hint">
Do you want to display signposted learning content when a learner submits their self assessment results?
Do you want to display signposted learning content when a learner submits their self-assessment results?
</div>
<div class="nhsuk-radios" id="IncludesSignposting">
<div class="nhsuk-radios__item">
Expand Down Expand Up @@ -207,7 +207,7 @@
</h1>
</legend>
<div id="example-hints-hint" class="nhsuk-hint">
Do you want to specify a custom label for self assessment questions? If not, they will be labelled as “question”.
Do you want to specify a custom label for self-assessment questions? If not, they will be labelled as “question”.
</div>
<div class="nhsuk-radios nhsuk-radios--conditional" id="QuestionLabel">
<div class="nhsuk-radios__item">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
@inject IConfiguration Configuration

@{
ViewData["Title"] = "Self-assessment - Preview";
ViewData["Application"] = "Self-assessment Service";
ViewData["HeaderPathName"] = "Self-assessment Service";
ViewData["Title"] = "Self-assessment - preview";
ViewData["Application"] = "Self-assessment service";
ViewData["HeaderPathName"] = "Self-assessment service";
}

@section NavMenuItems {
Expand All @@ -29,10 +29,10 @@
<form asp-action="PreviewConfirm" asp-route-competencyAssessmentId="@Model.CompetencyAssessmentId" asp-route-competencyGroupId="@Model.CompetencyAssessmentId">
<div class="nhsuk-u-reading-width">
<h1 id="form-heading" class="nhsuk-fieldset__heading nhsuk-label--l">
Preview self assessment
Preview self-assessment
</h1>
<p class="nhsuk-body-l">
To preview this self assessment, it must be made available to your current centre, @Model.CentreName, if it isn’t already. You will then be enrolled as a test learner to view the self-assessment as a learner would.
To preview this self-assessment, it must be made available to your current centre, @Model.CentreName, if it isn’t already. You will then be enrolled as a test learner to view the self-assessment as a learner would.
</p>
</div>
<button class="nhsuk-button" type="submit">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
@model CompetencyAssessmentFeaturesViewModel
@{
ViewData["Title"] = "Self-assessment features summary";
ViewData["Application"] = "Framework Service";
ViewData["HeaderPathName"] = "Framework Service";
ViewData["Application"] = "Framework service";
ViewData["HeaderPathName"] = "Framework service";
}

@section NavMenuItems {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
@model WorkingGroupCollaboratorsViewModel
@{
ViewData["Title"] = "Assign working group";
ViewData["Application"] = "Self-assessment Service";
ViewData["HeaderPathName"] = "Self-assessment Service";
ViewData["Application"] = "Self-assessment service";
ViewData["HeaderPathName"] = "Self-assessment service";
string errMsg = TempData["CompetencyAssessmentError"]?.ToString();
if (!string.IsNullOrWhiteSpace(errMsg)) { Model.Error = true; }
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
@using DigitalLearningSolutions.Web.ViewModels.CompetencyAssessments
@model EditBrandingViewModel
@{
ViewData["Title"] = "Assessment Branding";
ViewData["Application"] = "Framework Service";
ViewData["HeaderPathName"] = "Framework Service";
ViewData["Title"] = "Assessment branding";
ViewData["Application"] = "Framework service";
ViewData["HeaderPathName"] = "Framework service";
}

@section NavMenuItems {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
@using DigitalLearningSolutions.Web.ViewModels.CompetencyAssessments
@model EditCompetencyRoleRequirementsViewModel;
@{
ViewData["Title"] = "Manage Role Requirements";
ViewData["Application"] = "Framework Service";
ViewData["Title"] = "Manage role requirements";
ViewData["Application"] = "Framework service";
}
<link rel="stylesheet" href="@Url.Content("~/css/frameworks/frameworksShared.css")" asp-append-version="true">
@section NavMenuItems {
Expand All @@ -24,7 +24,7 @@
}
<h1>Edit @Model.VocabularySingular.ToLower() role requirements</h1>
<p class="nhsuk-lede-text">
Manage role requirements @Model.CompetencyAssessmentName @Model.VocabularySingular.ToLower() self assessment questions.
Manage role requirements @Model.CompetencyAssessmentName @Model.VocabularySingular.ToLower() self-assessment questions.
</p>
@foreach (var group in Model.GroupedCompetencyWithAssessmentRoleRequirements)
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
@using DigitalLearningSolutions.Web.ViewModels.CompetencyAssessments
@model EditDescriptionViewModel;
@{
ViewData["Title"] = "Edit Introductory Text";
ViewData["Application"] = "Framework Service";
ViewData["Title"] = "Edit introductory text";
ViewData["Application"] = "Framework service";
}
<link rel="stylesheet" href="@Url.Content("~/css/jodit.css")" asp-append-version="true">
<link rel="stylesheet" href="@Url.Content("~/css/frameworks/frameworksShared.css")" asp-append-version="true">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
@using DigitalLearningSolutions.Web.ViewModels.CompetencyAssessments
@model EditRoleRequirementsFlagsViewModel;
@{
ViewData["Title"] = "Manage Role Requirements";
ViewData["Application"] = "Framework Service";
ViewData["Title"] = "Manage role requirements";
ViewData["Application"] = "Framework service";
}
<link rel="stylesheet" href="@Url.Content("~/css/frameworks/frameworksShared.css")" asp-append-version="true">
@section NavMenuItems {
Expand All @@ -27,10 +27,10 @@
<nhs-form-group nhs-validation-for="IncludeRequirementsFilters">
<fieldset class="nhsuk-fieldset" aria-describedby="role-requirements-filters-hint">
<legend class="nhsuk-fieldset__legend nhsuk-fieldset__legend--l">
<h2>Do you want to include role requirements filters in the @Model.CompetencyAssessmentName self assessment?</h2>
<h2>Do you want to include role requirements filters in the @Model.CompetencyAssessmentName self-assessment?</h2>
</legend>
<div id="role-requirements-filters-hint" class="nhsuk-hint">
This will allow the learner to filter self assessment competencies based on whether they are meeting the role requirements set.
This will allow the learner to filter self-assessment competencies based on whether they are meeting the role requirements set.
</div>
<span nhs-validation-for="IncludeRequirementsFilters"></span>
<div class="nhsuk-radios nhsuk-radios--inline">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
@using DigitalLearningSolutions.Web.ViewModels.CompetencyAssessments
@model EditQuestionResponseRoleRequirementsViewModel;
@{
ViewData["Title"] = "Manage Role Requirements";
ViewData["Application"] = "Framework Service";
ViewData["Title"] = "Manage role requirements";
ViewData["Application"] = "Framework service";
}
<link rel="stylesheet" href="@Url.Content("~/css/frameworks/frameworksShared.css")" asp-append-version="true">
@section NavMenuItems {
Expand Down Expand Up @@ -141,7 +141,7 @@
<legend class="nhsuk-fieldset__legend nhsuk-fieldset__legend--m">
Apply to all?
</legend>
<vc:single-checkbox asp-for="@nameof(Model.ApplyToAll)" label="Apply role requirements to all @Model.CountAssessmentQuestionInSelfAssessment instances of this assessment question in @Model.CompetencyAssessmentName" hint-text="This will not affect instances that are added to the self assessment later"></vc:single-checkbox>
<vc:single-checkbox asp-for="@nameof(Model.ApplyToAll)" label="Apply role requirements to all @Model.CountAssessmentQuestionInSelfAssessment instances of this assessment question in @Model.CompetencyAssessmentName" hint-text="This will not affect instances that are added to the self-assessment later"></vc:single-checkbox>
</fieldset>
}
<input type="hidden" asp-for="@Model.Id" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
@using DigitalLearningSolutions.Web.ViewModels.CompetencyAssessments;
@model EditRoleProfileLinksViewModel;
@{
ViewData["Title"] = "Edit National Role Profile Links";
ViewData["Application"] = "Framework Service";
ViewData["Title"] = "Edit national role profile links";
ViewData["Application"] = "Framework service";
}
<link rel="stylesheet" href="@Url.Content("~/css/frameworks/frameworksShared.css")" asp-append-version="true">
@section NavMenuItems {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
@using DigitalLearningSolutions.Web.ViewModels.CompetencyAssessments
@model EditVocabularyViewModel
@{
ViewData["Title"] = "Assessment Branding";
ViewData["Application"] = "Framework Service";
ViewData["HeaderPathName"] = "Framework Service";
ViewData["Title"] = "Assessment branding";
ViewData["Application"] = "Framework service";
ViewData["HeaderPathName"] = "Framework service";
}

@section NavMenuItems {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
@using DigitalLearningSolutions.Web.ViewModels.CompetencyAssessments
@model EditRoleRequirementsFlagsViewModel;
@{
ViewData["Title"] = "Manage Role Requirements";
ViewData["Application"] = "Framework Service";
ViewData["Title"] = "Manage role requirements";
ViewData["Application"] = "Framework service";
}
<link rel="stylesheet" href="@Url.Content("~/css/frameworks/frameworksShared.css")" asp-append-version="true">
@section NavMenuItems {
Expand All @@ -27,7 +27,7 @@
<nhs-form-group nhs-validation-for="EnforceRoleRequirementsForSignOff">
<fieldset class="nhsuk-fieldset" aria-describedby="enforce-role-requirements-hint">
<legend class="nhsuk-fieldset__legend nhsuk-fieldset__legend--l">
<h2>Do you want to enforce role requirements for the @Model.CompetencyAssessmentName self assessment?</h2>
<h2>Do you want to enforce role requirements for the @Model.CompetencyAssessmentName self-assessment?</h2>
</legend>
<div id="enforce-role-requirements-hint" class="nhsuk-hint">
When role requirements are enforced, learners can only request confirmation for self‑assessment results that meet the required competency criteria, even if no specific requirements are set.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

@{
ViewData["Title"] = (string)ViewContext.RouteData.Values["tabname"] == "Mine" ? "My self-assessments" : "All self-assessments";
ViewData["Application"] = "Framework Service";
ViewData["Application"] = "Framework service";
}
<link rel="stylesheet" href="@Url.Content("~/css/frameworks/frameworksShared.css")" asp-append-version="true">
@section NavMenuItems {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
</legend>

<p class="nhsuk-hint">
This will be displayed to the learner is requesting supervisor signing off of their completed self assessment
This will be displayed to the learner is requesting supervisor signing off of their completed self-assessment
</p>
<div class="nhsuk-form-group @(errorHasOccurred ? "nhsuk-form-group--error" : "")">
<div class="nhsuk-radios nhsuk-radios--conditional">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
@model ManageCompetencyAssessmentViewModel
@{
ViewData["Title"] = Model.PublishStatusID == 3 ? "Manage" : "Create" + " self-assessment";
ViewData["Application"] = "Framework Service";
ViewData["Application"] = "Framework service";
}
<link rel="stylesheet" href="@Url.Content("~/css/frameworks/frameworksShared.css")" asp-append-version="true">
@section NavMenuItems {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
@using DigitalLearningSolutions.Web.ViewModels.CompetencyAssessments
@model ManageCompetencyRoleRequirementsViewModel;
@{
ViewData["Title"] = "Manage Role Requirements";
ViewData["Application"] = "Framework Service";
ViewData["Title"] = "Manage role requirements";
ViewData["Application"] = "Framework service";
}
<link rel="stylesheet" href="@Url.Content("~/css/frameworks/frameworksShared.css")" asp-append-version="true">
@section NavMenuItems {
Expand All @@ -21,14 +21,14 @@
</div>
</nav>
}
<h1>Self assessment @Model.VocabularySingular.ToLower() role requirements</h1>
<h1>Self-assessment @Model.VocabularySingular.ToLower() role requirements</h1>
<p class="nhsuk-lede-text">
Specify whether role requirements will be enforced for the @Model.CompetencyAssessmentName self assessment. When requirements are set, they must be met by the learner before the self assessment can be signed off.
Specify whether role requirements will be enforced for the @Model.CompetencyAssessmentName self-assessment. When requirements are set, they must be met by the learner before the self-assessment can be signed off.
</p>
<dl class="nhsuk-summary-list">
<div class="nhsuk-summary-list__row">
<dt class="nhsuk-summary-list__key">
Enforce role requirements for self assessment
Enforce role requirements for self-assessment
</dt>
<dd class="nhsuk-summary-list__value">
@if (Model.EnforceRoleRequirementsForSignOff)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
@using DigitalLearningSolutions.Web.ViewModels.CompetencyAssessments
@model SelectOptionalCompetenciesViewModel;
@{
ViewData["Title"] = "Manage Optional Competencies";
ViewData["Application"] = "Framework Service";
ViewData["Title"] = "Manage optional competencies";
ViewData["Application"] = "Framework service";
}
<link rel="stylesheet" href="@Url.Content("~/css/frameworks/frameworksShared.css")" asp-append-version="true">
@section NavMenuItems {
Expand All @@ -24,7 +24,7 @@
<h1>Manage optional @Model.VocabularyPlural.ToLower()</h1>
<p class="nhsuk-lede-text">
Manage optional @Model.VocabularyPlural.ToLower() for the assessment @Model.CompetencyAssessmentName.
Optional @Model.VocabularyPlural.ToLower() can be selected for inclusion in a self assessment by a learner if required.
Optional @Model.VocabularyPlural.ToLower() can be selected for inclusion in a self-assessment by a learner if required.
</p>
<dl class="nhsuk-summary-list">
<div class="nhsuk-summary-list__row">
Expand All @@ -34,7 +34,7 @@
<dd class="nhsuk-summary-list__value">
@if (!Model.SelectedCompetencyIds.Any())
{
<text>No @Model.VocabularyPlural.ToLower() have been made optional for this self assessment.</text>
<text>No @Model.VocabularyPlural.ToLower() have been made optional for this self-assessment.</text>
}
else
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@

<div class="nhsuk-summary-list__row">
<dt class="nhsuk-summary-list__key">
Supervisor signs off self assessment
Supervisor signs off self-assessment
</dt>
<dd class="nhsuk-summary-list__value">
@Model.Signoff.SignoffText
Expand All @@ -56,7 +56,7 @@
<ul class="nhsuk-summary-list__actions-list left-align-actions">
<li class="nhsuk-summary-list__actions-list-item">
<a asp-action="SupervisedSelfAssessmentSignoff" asp-route-actionName="Signoff" asp-route-competencyAssessmentId="@ViewContext.RouteData.Values["competencyAssessmentId"]">
Change<span class="nhsuk-u-visually-hidden"> Supervisor signs off self assessment</span>
Change<span class="nhsuk-u-visually-hidden"> Supervisor signs off self-assessment</span>
</a>
</li>
</ul>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
@model CompetencyAssessmentBase;
@{
ViewData["Title"] = "New self-assessments";
ViewData["Application"] = "Framework Service";
ViewData["Application"] = "Framework service";
}
<link rel="stylesheet" href="@Url.Content("~/css/frameworks/frameworksShared.css")" asp-append-version="true">
@section NavMenuItems {
Expand Down
Loading
Loading