Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.encoreos.io/llms.txt

Use this file to discover all available pages before exploring further.

The Assessment Details screen is accessible at /lo/assessments/:assessmentId and shows an assessment template’s metadata and its associated distribution schedules, with controls to add schedules, edit, and delete the assessment.

Overview

The AssessmentDetailPage fetches the assessment via useAssessment(assessmentId) and its schedules via useAssessmentSchedules({ assessmentId }). The breadcrumb is set to assessment_name. Two tabs — Details and Schedules — are shown. The Details tab shows assessment metadata and an AssessmentTypeBadge. The Schedules tab lists schedules as cards with ScheduleStatusBadge indicators; an “Add Schedule” button opens AssessmentScheduleDialog. The header includes Edit (opens AssessmentFormDialog) and Delete (opens ConfirmationDialog) buttons. Selecting a schedule navigates to /lo/assessments/schedules/:scheduleId.

Who it’s for

Requires LO_PERMISSIONS.DASHBOARD_VIEW (lo.dashboard.view) via the shared LOViewGuard. Creating assessments uses lo.assessments.create.

Before you start

  • The assessment identified by :assessmentId must exist.
  • lo.dashboard.view permission required.

Steps

1

Open an assessment

Navigate to /lo/assessments/:assessmentId or select an assessment from the Assessments list.
2

Review details

On the Details tab, view the assessment name, type badge, and other metadata.
3

Manage schedules

On the Schedules tab, view existing schedules with their status badges.
4

Add a schedule

Select “Add Schedule” to open AssessmentScheduleDialog and create a new distribution schedule.
5

Open a schedule

Select a schedule to navigate to /lo/assessments/schedules/:scheduleId.
6

Edit the assessment

Select Edit in the header to open AssessmentFormDialog.
7

Delete the assessment

Select Delete and confirm in ConfirmationDialog; the page navigates back to /lo/assessments.

Key concepts

  • AssessmentSchedule: a planned distribution of an assessment to participants.
  • ScheduleStatusBadge: displays the current status of each schedule.
  • AssessmentTypeBadge: displays the assessment type.

Leadership

Leadership core overview.

Governance & parity

Documentation coverage and governance.
This page documents shipped product behavior. It is not medical, legal, or billing advice. Verify against your organization’s policies and applicable regulations before using it for clinical, compliance, or billing decisions. Protected health information (PHI) shown in the product is governed by your tenant’s access controls and is never exposed in this documentation.
  • src/routes/lo.tsx
  • src/cores/lo/pages/AssessmentDetailPage.tsx
  • src/cores/lo/hooks/useAssessments.ts
  • src/cores/lo/hooks/useAssessmentSchedules.ts