This page displays and allows editing of a provisioning template record. The primary route isDocumentation Index
Fetch the complete documentation index at: https://docs.encoreos.io/llms.txt
Use this file to discover all available pages before exploring further.
/it/jml/templates/:id. An alternate route, /it/changes/templates/:id, renders the ITChangeTemplateDetailPage component for change management templates.
Overview
The Template Details page (provisioning —/it/jml/templates/:id) allows editing of the template name, description, role type, active flag, default flag, and task definitions. It includes a Delete button with confirmation dialog. On save, the template is updated in place; on delete, the user is redirected to /it/jml/templates.
The alternate route /it/changes/templates/:id loads ITChangeTemplateDetailPage, which manages change management templates (separate entity and hooks).
Who it’s for
Both routes are protected byIT_PERMISSIONS.VIEW (it.view) via the module-level ITViewGuard. No additional per-route permission gate exists beyond the module guard.
Before you start
- The template must already exist. Create one from the Provisioning Templates list.
Steps (provisioning template — /it/jml/templates/:id)
- Navigate to IT > JML > Provisioning Templates, open the actions menu on a row, and click Edit, or navigate directly to
/it/jml/templates/:id. - Edit the Template Name, Description, or Role Type as needed.
- Toggle Active or Default Template flags.
- In Task Definitions, click Add Task to add tasks, or use the remove icon to delete existing tasks.
- Click Save Changes to persist updates.
- To delete the template, click Delete Template and confirm in the dialog.
Key concepts
- workflow_type — read-only on this page; set at template creation (
onboardingoroffboarding). - is_active — controls whether the template can be selected for new instances.
- is_default — auto-selects this template when no specific template is chosen.
- due_days_offset — days from workflow start date by which each task is due.
Related
IT Service Management
IT Service Management 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/it.tsx
- src/cores/it/pages/onboarding/ProvisioningTemplateDetailPage.tsx
- src/cores/it/pages/changes/ChangeTemplateDetailPage.tsx
- src/cores/it/hooks/useOnboardingTemplateMutations.ts
- src/cores/it/hooks/useOnboardingTemplates.ts