btcpayserver/BTCPayServer/Views/UIServer/Services.cshtml
dstrukt c3f73c0de3
Content Consistency Updates (1.4.0) (#3316)
* updates

* updates

* updates

* updates

* updates

* moves api key CTA to top right

* updates

* more updates

* more updates

* Fix active state when "Account" is selected

* Update wording in subnav: Profile becomes Account

* Fix email test

* Update Emails wording

* Try to fix email test

* Make General first tab in store settings

Co-authored-by: Dennis Reimann <mail@dennisreimann.de>
2022-01-18 10:19:27 +09:00

156 lines
4.8 KiB
Text

@model BTCPayServer.Models.ServerViewModels.ServicesViewModel
@{
ViewData.SetActivePage(ServerNavPages.Services, "Services");
}
<h3 class="mb-4">@ViewData["Title"]</h3>
<div class="mb-5">
<h4 class="mb-3">Crypto services exposed by your server</h4>
<table class="table table-hover mt-2">
<thead>
<tr>
<th>Crypto</th>
<th>Access Type</th>
<th style="text-align: right">Actions</th>
</tr>
</thead>
<tbody>
@foreach (var s in Model.ExternalServices.Where(service => !string.IsNullOrEmpty(service.CryptoCode)))
{
<tr>
<td>@s.CryptoCode</td>
<td>
<span>@s.DisplayName</span>
@if (s.ConnectionString.IsOnion() == true ||
(s.ConnectionString.IsOnion() == false && Context.Request.IsOnion()))
{
<img style="display:inline; margin-top:-8px;" src="~/img/icons/Onion_Color.svg" height="20" asp-append-version="true" alt="Tor Hidden Service" />
}
</td>
<td style="text-align: right">
<a asp-action="Service" asp-route-serviceName="@s.ServiceName" asp-route-cryptoCode="@s.CryptoCode">See information</a>
</td>
</tr>
}
</tbody>
</table>
</div>
@if (Model.OtherExternalServices.Count != 0 || Model.ExternalServices.Any(service => string.IsNullOrEmpty(service.CryptoCode)))
{
<div class="mb-5">
<h4 class="mb-3">Other external services</h4>
<table class="table table-hover mt-2">
<thead>
<tr>
<th>Name</th>
<th style="text-align: right">Actions</th>
</tr>
</thead>
<tbody>
@foreach (var s in Model.ExternalServices.Where(service => string.IsNullOrEmpty(service.CryptoCode)))
{
<tr>
<td>@s.DisplayName</td>
<td style="text-align: right">
<a asp-action="Service" asp-route-serviceName="@s.ServiceName">See information</a>
</td>
</tr>
}
@foreach (var s in Model.OtherExternalServices)
{
<tr>
<td>@s.Name</td>
<td style="text-align: right">
<a href="@s.Link" target="_blank" rel="noreferrer noopener">See information</a>
</td>
</tr>
}
</tbody>
</table>
</div>
}
@if (Model.TorHttpServices.Count != 0)
{
<div class="mb-5">
<h4 class="mb-3">HTTP-based Tor hidden services</h4>
<table class="table table-hover mt-2">
<thead>
<tr>
<th>Name</th>
<th style="text-align: right">Actions</th>
</tr>
</thead>
<tbody>
@foreach (var s in Model.TorHttpServices)
{
<tr>
<td>@s.Name</td>
<td style="text-align: right">
<a href="@s.Link" target="_blank" rel="noreferrer noopener">See information</a>
</td>
</tr>
}
</tbody>
</table>
</div>
}
@if (Model.TorOtherServices.Count != 0)
{
<div class="mb-5">
<h4 class="mb-3">Other Tor hidden services</h4>
<table class="table table-hover mt-2">
<thead>
<tr>
<th>Name</th>
<th>URL</th>
</tr>
</thead>
<tbody>
@foreach (var s in Model.TorOtherServices)
{
<tr>
<td>@s.Name</td>
<td style="word-wrap: anywhere;">
<code>@s.Link</code>
</td>
</tr>
}
</tbody>
</table>
</div>
}
<div class="mb-5">
<h4 class="mb-3">External storage services</h4>
<p class="text-secondary mb-0">Integrated storage providers to store file uploads from BTCPay Server.</p>
<table class="table table-hover mt-2">
<thead>
<tr>
<th>Name</th>
<th style="text-align: right">Actions</th>
</tr>
</thead>
<tbody>
@foreach (var s in Model.ExternalStorageServices)
{
<tr>
<td>@s.Name</td>
<td style="text-align: right">
<a href="@s.Link" rel="noreferrer noopener">Edit</a>
</td>
</tr>
}
</tbody>
</table>
</div>
@section PageFootContent {
<partial name="_ValidationScriptsPartial" />
}