|
| 1 | +@using DigitalLearningSolutions.Web.ViewModels.CompetencyAssessments |
| 2 | +@model EditVocabularyViewModel |
| 3 | +@{ |
| 4 | + ViewData["Title"] = "Assessment Branding"; |
| 5 | + ViewData["Application"] = "Framework Service"; |
| 6 | + ViewData["HeaderPathName"] = "Framework Service"; |
| 7 | +} |
| 8 | + |
| 9 | +@section NavMenuItems { |
| 10 | + <partial name="Shared/_NavMenuItems" /> |
| 11 | +} |
| 12 | +@section NavBreadcrumbs { |
| 13 | + <nav class="nhsuk-breadcrumb" aria-label="Breadcrumb"> |
| 14 | + <div class="nhsuk-width-container"> |
| 15 | + <ol class="nhsuk-breadcrumb__list"> |
| 16 | + <li class="nhsuk-breadcrumb__item"><a class="nhsuk-breadcrumb__link trigger-loader" asp-action="ViewCompetencyAssessments" asp-route-tabname="Mine">Competency Assessments</a></li> |
| 17 | + <li class="nhsuk-breadcrumb__item"><a class="nhsuk-breadcrumb__link trigger-loader" asp-action="ManageCompetencyAssessment" asp-route-competencyAssessmentId="@Model.ID">Manage Competency Assessment</a></li> |
| 18 | + <li class="nhsuk-breadcrumb__item">Brand and category</li> |
| 19 | + </ol> |
| 20 | + <p class="nhsuk-breadcrumb__back"><a class="nhsuk-breadcrumb__backlink" asp-action="ManageCompetencyAssessment" asp-route-competencyAssessmentId="@Model.ID">Back to competency assessment detail</a></p> |
| 21 | + </div> |
| 22 | + </nav> |
| 23 | +} |
| 24 | + |
| 25 | +<h1>Edit @Model.CompetencyAssessmentName vocabulary</h1> |
| 26 | +<form method="post"> |
| 27 | + @if (!ViewData.ModelState.IsValid) |
| 28 | + { |
| 29 | + <partial name="_ErrorSummary" /> |
| 30 | + } |
| 31 | + <nhs-form-group nhs-validation-for="Vocabulary"> |
| 32 | + <fieldset class="nhsuk-fieldset"> |
| 33 | + <legend class="nhsuk-fieldset__legend nhsuk-fieldset__legend--s"> |
| 34 | + <h2 class="nhsuk-fieldset__heading"> |
| 35 | + Choose assessment vocabulary - the name given to the building blocks of your assessment. |
| 36 | + </h2> |
| 37 | + </legend> |
| 38 | + <div class="nhsuk-radios"> |
| 39 | + <div class="nhsuk-radios__item"> |
| 40 | + <input class="nhsuk-radios__input" asp-for="Vocabulary" type="radio" value="Capability" aria-describedby="vocabulary-item-1-hint"> |
| 41 | + <label class="nhsuk-label nhsuk-radios__label" for="Vocabulary"> |
| 42 | + Capability | Capabilities |
| 43 | + </label> |
| 44 | + <div class="nhsuk-hint nhsuk-radios__hint" id="vocabulary-item-1-hint"> |
| 45 | + The attributes (skills, knowledge and behaviours) which individuals bring to the workplace. |
| 46 | + </div> |
| 47 | + </div> |
| 48 | + |
| 49 | + <div class="nhsuk-radios__item"> |
| 50 | + <input class="nhsuk-radios__input" asp-for="Vocabulary" type="radio" value="Competence" aria-describedby="vocabulary-item-3-hint"> |
| 51 | + <label class="nhsuk-label nhsuk-radios__label" for="Vocabulary"> |
| 52 | + Competence | Competences |
| 53 | + </label> |
| 54 | + <div class="nhsuk-hint nhsuk-radios__hint" id="vocabulary-item-3-hint"> |
| 55 | + Defined standards of performance, focused on the outputs of work and observable performance. |
| 56 | + </div> |
| 57 | + </div> |
| 58 | + <div class="nhsuk-radios__item"> |
| 59 | + <input class="nhsuk-radios__input" asp-for="Vocabulary" type="radio" value="Proficiency" aria-describedby="vocabulary-item-4-hint"> |
| 60 | + <label class="nhsuk-label nhsuk-radios__label" for="Vocabulary"> |
| 61 | + Proficiency | Proficiencies |
| 62 | + </label> |
| 63 | + <div class="nhsuk-hint nhsuk-radios__hint" id="vocabulary-item-4-hint"> |
| 64 | + The knowledge and skills that registered nurses must demonstrate when caring for people of all ages and across all care settings. |
| 65 | + </div> |
| 66 | + </div> |
| 67 | + <div class="nhsuk-radios__item"> |
| 68 | + <input class="nhsuk-radios__input" asp-for="Vocabulary" type="radio" value="Competency" aria-describedby="vocabulary-item-2-hint"> |
| 69 | + <label class="nhsuk-label nhsuk-radios__label" for="Vocabulary"> |
| 70 | + Competency | Competencies |
| 71 | + </label> |
| 72 | + <div class="nhsuk-hint nhsuk-radios__hint" id="vocabulary-item-2-hint"> |
| 73 | + The same as capability | capabilities.<br /> |
| 74 | + The term capabilities is recommended to make a clear distinction from competences. |
| 75 | + </div> |
| 76 | + </div> |
| 77 | + </div> |
| 78 | + </fieldset> |
| 79 | + <span nhs-validation-for="Vocabulary"></span> |
| 80 | + </nhs-form-group> |
| 81 | + <nhs-form-group nhs-validation-for="TaskStatus"> |
| 82 | + <vc:single-checkbox asp-for="@nameof(Model.TaskStatus)" label="Mark this task as complete" hint-text="You will still be able to make changes after marking this task as complete."></vc:single-checkbox> |
| 83 | + </nhs-form-group> |
| 84 | + <input name="ID" type="hidden" asp-for="ID" /> |
| 85 | + <input name="CompetencyAssessmentName" type="hidden" asp-for="CompetencyAssessmentName" /> |
| 86 | + <input name="userRole" type="hidden" asp-for="UserRole" /> |
| 87 | + <button class="nhsuk-button" type="submit"> |
| 88 | + Save |
| 89 | + </button> |
| 90 | + <div class="nhsuk-back-link"> |
| 91 | + <a class="nhsuk-back-link__link" asp-action="ManageCompetencyAssessment" asp-route-competencyAssessmentId="@Model.ID"> |
| 92 | + <svg class="nhsuk-icon nhsuk-icon__chevron-left" focusable='false' xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"> |
| 93 | + <path d="M13.41 12l5.3-5.29a1 1 0 1 0-1.42-1.42L12 10.59l-5.29-5.3a1 1 0 0 0-1.42 1.42l5.3 5.29-5.3 5.29a1 1 0 0 0 0 1.42 1 1 0 0 0 1.42 0l5.29-5.3 5.29 5.3a1 1 0 0 0 1.42 0 1 1 0 0 0 0-1.42z"></path> |
| 94 | + </svg> |
| 95 | + Cancel |
| 96 | + </a> |
| 97 | + </div> |
| 98 | +</form> |
0 commit comments