mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2026-02-05 22:34:25 +01:00
26 lines
793 B
Plaintext
26 lines
793 B
Plaintext
@model BTCPayServer.Security.Bitpay.BitTokenEntity
|
|
@{
|
|
ViewData.SetLayoutModel(new(nameof(StoreNavPages.Tokens), StringLocalizer["Access Tokens"]));
|
|
}
|
|
<h2 class="mb-2 mb-lg-3">@ViewData["Title"]</h2>
|
|
<partial name="_StatusMessage" />
|
|
<div class="row">
|
|
<div class="col-md-8">
|
|
<h5 text-translate="true">Token Information</h5>
|
|
<table class="table table-hover">
|
|
<tr>
|
|
<th text-translate="true">Label</th>
|
|
<td>@Model.Label</td>
|
|
</tr>
|
|
<tr>
|
|
<th text-translate="true">SIN</th>
|
|
<td>@Model.SIN</td>
|
|
</tr>
|
|
<tr>
|
|
<th text-translate="true">Token</th>
|
|
<td>@Model.Value</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</div>
|