2019-10-19 00:54:20 +09:00
|
|
|
@model BTCPayServer.Security.Bitpay.BitTokenEntity
|
2018-10-31 17:59:09 +09:00
|
|
|
@{
|
|
|
|
Layout = "../Shared/_NavLayout.cshtml";
|
2021-12-16 11:17:02 +01:00
|
|
|
ViewData.SetActivePage(StoreNavPages.Tokens, "Access Tokens", Context.GetStoreData().StoreName);
|
2018-10-31 17:59:09 +09:00
|
|
|
}
|
|
|
|
|
2021-12-16 11:17:02 +01:00
|
|
|
<h3 class="mb-4">@ViewData["Title"]</h3>
|
2021-04-08 15:32:42 +02:00
|
|
|
|
2018-10-31 17:59:09 +09:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-8">
|
2021-11-18 01:04:20 -08:00
|
|
|
<h5>Token Information</h5>
|
2021-08-20 14:59:31 +02:00
|
|
|
<table class="table table-hover">
|
2018-10-31 17:59:09 +09:00
|
|
|
<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>
|