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 Training Details page shows a single training course record with its enrollment history and management actions. It is located at route /gr/training/:id.

Overview

The page is rendered by TrainingDetail and loads the course via useTrainingCourseDetail and enrollments via useTrainingEnrollmentList. Tabs include Overview (course metadata) and Enrollments (enrollment table). The dynamic breadcrumb is set to the course title. Users with edit access see an Edit button (opens TrainingCourseFormDialog). An Enroll button opens TrainingEnrollmentDialog. No permission gate is declared on this route in gr.tsx. Displayed course fields include: title, category badge, status badge, duration (converted from minutes to hours), and description.

Who it’s for

No explicit permission gate on this route.

Before you start

  • Navigate from the Training Library at /gr/training.
  • A training course record must exist for the given ID.

Steps

  1. Go to Governance & Compliance → Training and select a course.
  2. Review the Overview tab for course details, category, status, and duration.
  3. Open the Enrollments tab to view enrollment records and completion status.
  4. Select Enroll to add an enrollment (SME: confirm required permissions).
  5. Select Edit to update course details (SME: confirm required permissions).

Key concepts

ConceptDescription
DurationStored in duration_minutes; displayed as rounded hours
CategoryClassification of the training domain (clinical, safety, compliance, etc.)
EnrollmentA link between an employee and a course, tracking completion
Statusactive, draft, archived — determines visibility in catalogs

Governance & Compliance

Governance & Compliance core overview.

Governance & parity

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/gr.tsx
  • src/cores/gr/pages/TrainingDetail.tsx
  • src/cores/gr/hooks/useTrainingCourseList.ts
  • src/cores/gr/hooks/useTrainingEnrollmentList.ts