btcpayserver/BTCPayServer/Views/UIStores/ShowToken.cshtml

26 lines
806 B
Plaintext
Raw Normal View History

@model BTCPayServer.Security.Bitpay.BitTokenEntity
2018-10-31 09:59:09 +01:00
@{
ViewData.SetActivePage(StoreNavPages.Tokens, StringLocalizer["Access Tokens"], Context.GetStoreData().Id);
2018-10-31 09:59:09 +01: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">
<h5 text-translate="true">Token Information</h5>
<table class="table table-hover">
2018-10-31 09:59:09 +01:00
<tr>
<th text-translate="true">Label</th>
2018-10-31 09:59:09 +01:00
<td>@Model.Label</td>
</tr>
<tr>
<th text-translate="true">SIN</th>
2018-10-31 09:59:09 +01:00
<td>@Model.SIN</td>
</tr>
<tr>
<th text-translate="true">Token</th>
2018-10-31 09:59:09 +01:00
<td>@Model.Value</td>
</tr>
</table>
</div>
</div>