@if (loading) {

{{ 'common.loading' | translate }}

} @if (!loading && !selected) {
@if (catalogs.length === 0) {

{{ 'sessionItemCatalogsPanel.empty' | translate }}

} @for (c of catalogs; track c) { }
} @if (selected) {

{{ selected.name }}

@for (g of groups; track g) {
@if (g.category !== '—') {
{{ g.category }}
} @for (it of g.items; track it) {
{{ it.name }} @if (it.price) { {{ it.price }} }
@if (it.description) {
{{ it.description }}
}
}
}
}