2019-10-18 17:54:20 +02:00
|
|
|
@model BTCPayServer.Security.Bitpay.BitTokenEntity
|
2018-10-31 09:59:09 +01:00
|
|
|
@{
|
2024-10-25 15:48:53 +02:00
|
|
|
ViewData.SetActivePage(StoreNavPages.Tokens, StringLocalizer["Access Tokens"], Context.GetStoreData().Id);
|
2018-10-31 09:59:09 +01:00
|
|
|
}
|
2024-06-19 15:23:10 +02:00
|
|
|
<h2 class="mb-2 mb-lg-3">@ViewData["Title"]</h2>
|
|
|
|
<partial name="_StatusMessage" />
|
2018-10-31 09:59:09 +01:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-8">
|
2024-10-17 15:51:40 +02:00
|
|
|
<h5 text-translate="true">Token Information</h5>
|
2021-08-20 14:59:31 +02:00
|
|
|
<table class="table table-hover">
|
2018-10-31 09:59:09 +01:00
|
|
|
<tr>
|
2024-10-17 15:51:40 +02:00
|
|
|
<th text-translate="true">Label</th>
|
2018-10-31 09:59:09 +01:00
|
|
|
<td>@Model.Label</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2024-10-17 15:51:40 +02:00
|
|
|
<th text-translate="true">SIN</th>
|
2018-10-31 09:59:09 +01:00
|
|
|
<td>@Model.SIN</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2024-10-17 15:51:40 +02:00
|
|
|
<th text-translate="true">Token</th>
|
2018-10-31 09:59:09 +01:00
|
|
|
<td>@Model.Value</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|