@for (month of monthOptions(); track month) { {{ formatMonth(month) }} }
{{ 'activity.columns' | translate }} @for (col of service.columnDefs(); track col.key) { {{ col.label | translate }} } @if (showDownload()) { {{ 'activity.download' | translate }} {{ 'activity.download-csv' | translate }} {{ 'activity.download-ndjson' | translate }} }
@if (showSearch()) { }
@if (loading()) { } @else if (items().length === 0) {

{{ emptyState().titleKey | translate }}

@if (emptyState().descriptionKey) {

{{ emptyState().descriptionKey | translate }}

} @if (emptyState().actionKey) { {{ emptyState().actionKey | translate }} }
} @else { @for (col of service.columnDefs(); track col.key) { @if (isColumnVisible(col.key)) { {{ col.label | translate }} } } @if (rowAction()) { } @for (item of paginatedItems(); track item.id) { @for (col of service.columnDefs(); track col.key) { @if (isColumnVisible(col.key)) { @if (col.inlineAction) {
@if (isCustomColumn(col.key) && customCellTemplate(); as tpl) { } @else { {{ getCellValue(item, col.key) }} } @if (col.inlineAction.visible(item)) { }
} @else { @if (col.iconFn) { @if (col.iconFn(item); as iconName) { } @else { } } @else if (isCustomColumn(col.key) && customCellTemplate(); as tpl) { } @else { {{ getCellValue(item, col.key) }} } }
} } @if (rowAction()) { @if (rowAction()!.visible(item)) { } }
}
}
@if (selectedItem(); as item) {
}