@model List @{ var recordTags = Model.SelectMany(x => x.Tags).Distinct(); }
@($"# of Notes: {Model.Count()}") @foreach (string recordTag in recordTags) { @recordTag } @foreach (string recordTag in recordTags) { }
@foreach (Note note in Model) { @if (note.Pinned) { } else { } }
Description Note
@note.Description@note.Description@CarCareTracker.Helper.StaticHelper.TruncateStrings(note.NoteText, 100)