{{ 'onlineshop.lbl.products' | translate }}
@if (lst_typeproducts.length === 0) {

{{ 'onlineshop.lbl.products' | translate }}

{{ 'onlineshop.prd.selcom' | translate }}
} @for (type of lst_typeproducts; track type; let i = $index) {
@if (filtered_lst_products[i]?.length) {
@for (item of filtered_lst_products[i]; track item) {
@if (!item.photo?.length) {
}
{{ item.title }}

{{ item.shortdescription }}

{{ item.price | currency:'EUR':'symbol' }}
}
} @else {
{{ 'onlineshop.prd.selcom' | translate }}
}
}