@using BTCPayServer.Views.Stores
@using BTCPayServer.Abstractions.Extensions
@model BTCPayServer.Services.Altcoins.Monero.UI.UIMoneroLikeStoreController.MoneroLikePaymentMethodViewModel
@{
Layout = "../Shared/_NavLayout.cshtml";
ViewData["NavPartialName"] = "../UIStores/_Nav";
ViewData.SetActivePage(Model.CryptoCode, $"{Model.CryptoCode} Settings", Model.CryptoCode);
}
@if (Model.Summary != null)
{
- Node available: @Model.Summary.DaemonAvailable
- Wallet available: @Model.Summary.WalletAvailable (@(Model.WalletFileFound ? "Wallet file present" : "Wallet file not found"))
- Last updated: @Model.Summary.UpdatedAt
- Synced: @Model.Summary.Synced (@Model.Summary.CurrentHeight / @Model.Summary.TargetHeight)
}
@if (!Model.WalletFileFound || Model.Summary.WalletHeight == default)
{
}
@section PageFootContent {
@await Html.PartialAsync("_ValidationScriptsPartial")
}