The Training Details page shows a single training course record with its enrollment history and management actions. It is located at routeDocumentation Index
Fetch the complete documentation index at: https://docs.encoreos.io/llms.txt
Use this file to discover all available pages before exploring further.
/gr/training/:id.
Overview
The page is rendered byTrainingDetail 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
- Go to Governance & Compliance → Training and select a course.
- Review the Overview tab for course details, category, status, and duration.
- Open the Enrollments tab to view enrollment records and completion status.
- Select Enroll to add an enrollment (SME: confirm required permissions).
- Select Edit to update course details (SME: confirm required permissions).
Key concepts
| Concept | Description |
|---|---|
| Duration | Stored in duration_minutes; displayed as rounded hours |
| Category | Classification of the training domain (clinical, safety, compliance, etc.) |
| Enrollment | A link between an employee and a course, tracking completion |
| Status | active, draft, archived — determines visibility in catalogs |
Related
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.
Documentation sources
Documentation sources
- src/routes/gr.tsx
- src/cores/gr/pages/TrainingDetail.tsx
- src/cores/gr/hooks/useTrainingCourseList.ts
- src/cores/gr/hooks/useTrainingEnrollmentList.ts