diff --git a/libs/features/budgetting/budgets/src/lib/components/budget-table/budget-table.component.html b/libs/features/budgetting/budgets/src/lib/components/budget-table/budget-table.component.html index 2b16fdf6..5c228e27 100644 --- a/libs/features/budgetting/budgets/src/lib/components/budget-table/budget-table.component.html +++ b/libs/features/budgetting/budgets/src/lib/components/budget-table/budget-table.component.html @@ -1,55 +1,92 @@ -
| Budget Name | +Budget Name | - {{row.name ? row.name : '-' }} 0" class="badge primary" - (click)="openChildBudgetDialog(row)"> Linked Budgets ({{ row?.childrenList?.length }}) + {{ row.name ? row.name : '-' }} + 0" + class="badge primary" + (click)="openChildBudgetDialog(row)" + > + Linked Budgets ({{ row?.childrenList?.length }}) + | Status | +Status | - - {{translateStatus(row.status) | transloco}} + + {{ translateStatus(row.status) | transloco }} | Start Year | -{{row.startYear ? row.startYear : '-'}} | +Start Year | ++ {{ row.startYear ? row.startYear : '-' }} + | Duration (Years) | -{{row.duration ? row.duration : '-' }} | +Duration (Years) | ++ {{ row.duration ? row.duration : '-' }} + | Actions | +Actions |
-
-
- |
|---|