mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 10:40:29 +01:00
26 lines
641 B
Plaintext
26 lines
641 B
Plaintext
@model BTCPayServer.Security.Bitpay.BitTokenEntity
|
|
@{
|
|
Layout = "../Shared/_NavLayout.cshtml";
|
|
ViewData.SetActivePageAndTitle(StoreNavPages.Tokens, "Access Tokens");
|
|
}
|
|
|
|
<div class="row">
|
|
<div class="col-md-8">
|
|
<h5>Token information</h5>
|
|
<table class="table table-sm">
|
|
<tr>
|
|
<th>Label</th>
|
|
<td>@Model.Label</td>
|
|
</tr>
|
|
<tr>
|
|
<th>SIN</th>
|
|
<td>@Model.SIN</td>
|
|
</tr>
|
|
<tr>
|
|
<th>Token</th>
|
|
<td>@Model.Value</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</div>
|