@for (day of days(); track day) {
{{ parseDateLocal(day) | localeDate: 'EEE' }}
{{ parseDateLocal(day) | localeDate: 'dd' }}
}
@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) {
@if ( getProgress(counter, day) > 0 && getProgress(counter, day) < 100 && !isSimpleCompletion(counter) ) { } @if (isSimpleCompletion(counter) && getVal(counter, day) > 0) { check } @else if (getDisplayValue(counter, day)) { {{ getDisplayValue(counter, day) }} }
}
}
@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 }}
}
}
}