56 lines
1.1 KiB
Markdown
56 lines
1.1 KiB
Markdown
---
|
|
components:
|
|
- contextual
|
|
- iterdef
|
|
context_target: "[[JULI]]"
|
|
context_role: project
|
|
context_relation: belongs_to
|
|
iterdef_id: 4
|
|
iterdef_status: planned
|
|
iterdef_start: 2026-07-20T08:00:00
|
|
iterdef_end: 2026-07-24T18:00:00
|
|
iterdef_goal: Wir erweitern die Projektverwaltung im Dashboard, sodass immer eine korrekte, mit der Realität abgestimmte, Planungsbasis existiert.
|
|
iterdef_capacity_minutes: 0
|
|
cssclasses: wide-page
|
|
---
|
|
|
|
## Goal
|
|
|
|
|
|
## Workspace
|
|
```base
|
|
filters:
|
|
and:
|
|
- file.hasLink(this.file.path)
|
|
formulas:
|
|
Aufwand (ET: action_effort_minutes / 60 / 8
|
|
properties:
|
|
formula.Aufwand (ET:
|
|
displayName: Aufwand (ET)
|
|
views:
|
|
- type: table
|
|
name: Table
|
|
order:
|
|
- file.name
|
|
- action_status
|
|
- formula.Aufwand (ET
|
|
- action_impact
|
|
- action_effort_minutes
|
|
sort:
|
|
- property: action_status
|
|
direction: ASC
|
|
|
|
```
|
|
|
|
## Bound Work
|
|
```dataview
|
|
TABLE
|
|
action_status as "Action",
|
|
work_status as "Work",
|
|
round(action_effort_minutes / 60 / 8, 2) as "Aufwand (ET)",
|
|
action_impact as "Impact"
|
|
FROM ""
|
|
WHERE iterbind_target = this.file.link
|
|
SORT action_impact DESC, action_effort_minutes ASC
|
|
```
|