@for (day of days(); track day.str) {
@if (day.weekdayLabel) { {{ day.weekdayLabel }} } @else { {{ day.date | localeDate: 'EEE' : undefined : locale() }} }
{{ day.date | localeDate: 'dd' : undefined : locale() }}
}
@for (counter of simpleCounters(); track counter.id) {
@if (counter.icon && counter.icon.startsWith(':')) { } @else if (counter.icon) { {{ counter.icon }} } @else {
{{ counter.title.charAt(0).toUpperCase() }}
} {{ counter.title }}
@for (day of days(); track day.str) {
@if ( getProgress(counter, day.str) > 0 && getProgress(counter, day.str) < 100 && !isSimpleCompletion(counter) ) { } @if (isSimpleCompletion(counter) && getVal(counter, day.str) > 0) { check } @else if (getDisplayValue(counter, day.str)) { {{ getDisplayValue(counter, day.str) }} }
}
}
@if (disabledSimpleCounters().length > 0) {
@if (showDisabled()) {
@for (counter of disabledSimpleCounters(); track counter.id) {
@if (counter.icon && counter.icon.startsWith(':')) { } @else if (counter.icon) { {{ counter.icon }} } {{ counter.title }}
}
}
}