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

@ViewData["Title"]

@if (Model.Wallets.Any()) {
@foreach (var balance in Model.BalanceForCryptoCode) {
@($"{balance.Value.ShowMoney(balance.Key)} {balance.Key.CryptoCode}")
}
Total Balance
}
@if (Model.Wallets.Any()) { @foreach (var wallet in Model.Wallets) { }
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.

}