@model BTCPayServer.Models.AppViewModels.ViewPointOfSaleViewModel @{ Layout = "_LayoutPos"; int[] customTipPercentages = Model.CustomTipPercentages; var anyInventoryItems = Model.Items.Any(item => item.Inventory.HasValue); }
@if (!string.IsNullOrEmpty(Model.Description)) {
@Safe.Raw(Model.Description)
}
@for (var index = 0; index < Model.Items.Length; index++) { var item = Model.Items[index]; var image = item.Image; var description = item.Description;
@if (!String.IsNullOrWhiteSpace(image)) { @:Card image cap }
@item.Title
@if (!String.IsNullOrWhiteSpace(description)) {

@Safe.Raw(description)

}
}