@model BTCPayServer.Components.StoreLightningServices.StoreLightningServicesViewModel @if (Model.Services != null && Model.Services.Any()) {
Lightning Services
Node Info
@foreach (var service in Model.Services) { @if (!string.IsNullOrEmpty(service.Error)) {
@service.DisplayName @service.Error
} else if (string.IsNullOrEmpty(service.Link)) { @service.DisplayName } else { @service.DisplayName } }
}