mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 10:40:29 +01:00
64 lines
2.2 KiB
Plaintext
64 lines
2.2 KiB
Plaintext
@model BTCPayServer.Models.ServerViewModels.ServicesViewModel
|
|
@{
|
|
ViewData.SetActivePageAndTitle(ServerNavPages.Services);
|
|
}
|
|
|
|
|
|
<h4>@ViewData["Title"]</h4>
|
|
<partial name="_StatusMessage" for="@TempData["TempDataProperty-StatusMessage"]" />
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<div asp-validation-summary="All" class="text-danger"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
@if(Model.LNDServices.Count != 0)
|
|
{
|
|
<div class="col-md-8">
|
|
<div class="form-group">
|
|
<h5>LND nodes</h5>
|
|
<span>You can get access to internal LND services here. For gRPC, only BTC is supported.</span>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<table class="table table-sm table-responsive-md">
|
|
<thead>
|
|
<tr>
|
|
<th>Crypto</th>
|
|
<th>Access Type</th>
|
|
<th style="text-align:right">Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach(var lnd in Model.LNDServices)
|
|
{
|
|
<tr>
|
|
<td>@lnd.Crypto</td>
|
|
<td>@lnd.Type</td>
|
|
<td style="text-align:right">
|
|
<a asp-action="LNDGRPCServices" asp-route-cryptoCode="@lnd.Crypto" asp-route-index="@lnd.Index">See information</a>
|
|
</td>
|
|
</tr>
|
|
}
|
|
@if(Model.HasSSH)
|
|
{
|
|
<tr>
|
|
<td>None</td>
|
|
<td>SSH</td>
|
|
<td style="text-align:right">
|
|
<a asp-action="SSHService">See information</a>
|
|
</td>
|
|
</tr>
|
|
}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
}
|
|
</div>
|
|
|
|
@section Scripts {
|
|
@await Html.PartialAsync("_ValidationScriptsPartial")
|
|
}
|