Create Snapshot
Snapshots {{ snapshots().length }}
@if (loading() && snapshots().length === 0) {
} @else if (snapshots().length === 0) {
No snapshots yet. Create one above.
} @else {
@for (s of snapshots(); track s.id) { }
NameNotesCreatedActions
{{ s.name }} {{ s.note_count }} {{ nsToDate(s.created_at) | date:'dd/MM/yy HH:mm' }}
}
@if (notes().length > 0) {
Snapshot Notes {{ notes().length }}
@for (note of notes(); track note.path) {
{{ note.path }}

{{ note.content?.substring(0, 200) }}{{ note.content?.length > 200 ? '...' : '' }}

}
}