The Task Templates page allows administrators to create, edit, and delete reusable task templates that pre-populate task fields when tasks are created. It is reached atDocumentation Index
Fetch the complete documentation index at: https://docs.encoreos.io/llms.txt
Use this file to discover all available pages before exploring further.
/tasks/templates.
Overview
The page is wrapped in aPermissionGate for pf.task_templates.view. It displays a card list of templates, each showing name, priority badge, and edit/delete actions (gated by pf.task_templates.manage). Creating or editing a template opens TaskTemplateFormDialog. Deletions are confirmed via toast feedback.
Who it’s for
Requirespf.task_templates.view to view. Requires pf.task_templates.manage to create, edit, or delete templates. No explicit route-level permission gate — the route at /tasks/templates is accessible to authenticated users.
Before you start
- No prerequisites for viewing. Any user with
pf.task_templates.viewcan browse templates. - Creating templates requires
pf.task_templates.manage.
Steps
- Navigate to Tasks → Templates (
/tasks/templates). - Browse the list of existing templates.
- Click New Template (requires
pf.task_templates.manage) to open the creation form. - Fill in the template fields and save.
- Use the pencil icon to edit an existing template.
- Use the trash icon to delete a template (confirmed by toast).
Related
Platform Foundation
Platform Foundation 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/platform.tsx
- src/platform/tasks/pages/TaskTemplatesPage.tsx
- src/platform/tasks/hooks/useTaskTemplates.ts
- src/platform/tasks/components/TaskTemplateFormDialog.tsx