btcpayserver/BTCPayServer/Views/Stores/ShowToken.cshtml

28 lines
724 B
Text
Raw Normal View History

@model BTCPayServer.Security.Bitpay.BitTokenEntity
2018-10-31 17:59:09 +09:00
@{
Layout = "../Shared/_NavLayout.cshtml";
ViewData.SetActivePageAndTitle(StoreNavPages.Tokens, "Access Tokens", Context.GetStoreData().StoreName);
2018-10-31 17:59:09 +09:00
}
<h2 class="mb-4">@ViewData["PageTitle"]</h2>
2018-10-31 17:59:09 +09:00
<div class="row">
<div class="col-md-8">
<h5>Token information</h5>
<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>