btcpayserver/BTCPayServer/Views/UIStores/ShowToken.cshtml
d11n a962e60de9
More Translations (#6318)
* Store selector

* Footer

* Notifications

* Checkout Appearance

* Users list

* Forms

* Emails

* Pay Button

* Edit Dictionary

* Remove newlines, fix typos

* Forms

* Pull payments and payouts

* Various pages

* Use local docs link

* Fix

* Even more translations

* Fixes #6325

* Account pages

* Notifications

* Placeholders

* Various pages and components

* Add more
2024-10-25 22:48:53 +09:00

26 lines
806 B
Plaintext

@model BTCPayServer.Security.Bitpay.BitTokenEntity
@{
ViewData.SetActivePage(StoreNavPages.Tokens, StringLocalizer["Access Tokens"], Context.GetStoreData().Id);
}
<h2 class="mb-2 mb-lg-3">@ViewData["Title"]</h2>
<partial name="_StatusMessage" />
<div class="row">
<div class="col-md-8">
<h5 text-translate="true">Token Information</h5>
<table class="table table-hover">
<tr>
<th text-translate="true">Label</th>
<td>@Model.Label</td>
</tr>
<tr>
<th text-translate="true">SIN</th>
<td>@Model.SIN</td>
</tr>
<tr>
<th text-translate="true">Token</th>
<td>@Model.Value</td>
</tr>
</table>
</div>
</div>