@model BTCPayServer.Models.WalletViewModels.ListWalletsViewModel @{ ViewData.SetActivePageAndTitle(WalletsNavPages.Index, "Wallets"); }

@ViewData["Title"]

@if (Model.Wallets.Any()) { @foreach (var wallet in Model.Wallets) { @if (wallet.IsOwner) { } else { } }
Store Name Crypto Code Balance Actions
@wallet.StoreName@wallet.StoreName@wallet.CryptoCode @wallet.Balance Manage
} else {

There are no wallets yet. You can add wallets in the store setup.

}