src/app/features/tasks/dialog-view-archived-task/dialog-view-archived-task.component.html
@if (subTasks().length) {
@for (sub of subTasks(); track sub.id) { - {{ sub.isDone ? 'check_box' : 'check_box_outline_blank' }}{{ sub.title }} @if (sub.timeSpent) { {{ sub.timeSpent | msToString }} } } } @if (task.timeSpent || task.timeEstimate) {
{{ task.timeSpent || 0 | msToString }}/{{ task.timeEstimate || 0 | msToString }} } @if (task.notes) {
} @if (task.attachments?.length) {
} @if (issueUrl()) {
{{ issueUrl() }} open_in_new } @if (task.repeatCfgId) {
@if (repeatCfgLabel()) { {{ repeatCfgLabel() }} } } {{ T.F.TASK.ADDITIONAL_INFO.CREATED_ON | translate }} {{ task.created | localeDate: 'short' : undefined : locale() }} @if (task.doneOn) { {{ T.F.TASK.ADDITIONAL_INFO.COMPLETED_ON | translate }} {{ task.doneOn | localeDate: 'short' : undefined : locale() }} } {{ T.G.CLOSE | translate }}