The Template Details page (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.
/fa/budget-templates/:id) shows a budget template’s full structure including its line items, sharing configuration, and available actions.
Overview
The Template Details page loads a template viauseBudgetTemplateById and its enriched lines via useTemplateWithEnrichedLines, backed by the budget template tables. The breadcrumb is set from the template name.
Observed components on the page:
ApplyTemplateDialog: apply the template to a budget.TemplateExportDialog: export the template.TemplateSharingBadge: display the sharing configuration.- A
DataTableof template line items with account number, name, budget amount, and notes columns.
Who it’s for
Requires permission:fa.budget_templates.view.
Before you start
- The template must exist. Navigate here from the Budgeting Hub templates tab or the Template Library.
- You need
fa.budget_templates.viewto access this page. - To edit:
fa.budget_templates.edit. To delete: the delete action is available on this page.
Steps
View template details- Navigate to
/fa/budget-templates/:id(or click a template from the hub or library). - Review the line items table and sharing badge.
- Click Apply to open
ApplyTemplateDialog. - Complete the dialog to apply it to a budget.
- Click Export to open
TemplateExportDialog.
- Click Edit to navigate to the edit route (requires
fa.budget_templates.edit).
- Click Delete and confirm the alert dialog.
Key concepts
- Template line: A row with
account_id,budget_amount, and optionalnotes, linked to a chart of accounts entry. - Sharing badge: Displayed via
TemplateSharingBadgereflecting the template’s sharing level.
Related
Finance & Revenue
Finance & Revenue 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/fa.tsx
- src/cores/fa/pages/BudgetTemplateDetailPage.tsx
- src/cores/fa/hooks/useBudgetTemplateDetail.ts
- src/cores/fa/hooks/useBudgetTemplateMutation.ts
- src/cores/fa/components/ApplyTemplateDialog.tsx