Notes
Archive
@if (labels$ | async; as labels) { @for (label of labels; track trackByFn($index, label)) {
{{ label.title }}
} }
Edit labels
@if (notes$ | async; as notes) { @if (notes.length) { @for ( column of columns; track trackByFn($index, column) ) {
@for ( note of column.items; track trackByFn($index, note) ) {
@if (note.image) { }
@if (note.title) {
{{ note.title }}
} @if (note.content) {
{{ note.content }}
} @if (note.tasks) {
@for ( task of note.tasks; track trackByFn( $index, task ) ) {
@if ( !task.completed ) {
} @if ( task.completed ) { }
{{ task.content }}
}
} @if (note.labels) {
@for ( label of note.labels; track trackByFn( $index, label ) ) {
{{ label.title }}
}
}
}
}
} @else {
There are no notes!
} } @else {
Loading...
}