@if (isShowingCachedData()) {
warning {{ T.F.ISSUE_PANEL.CALENDAR_AGENDA.OFFLINE_BANNER_MSG | translate }}
} @if (isLoading()) {
} @else if (error() && !isShowingCachedData()) { } @else if (!agendaItems()?.length) {
No items found.
} @else {
@for (day of agendaItems(); track day.dayStr) {

{{ day.dayStr | localeDate: 'shortDate' : undefined : locale() }}

@for (item of day.itemsForDay; track item.issueData.id) { }
}
}