btcpayserver/BTCPayServer/Views/UIStores/ShowToken.cshtml
d11n 77fba4aee3
Add more translations (#6302)
* Newlines

* Dashboard

* Add more translations

* Moar

* Remove   from translated texts

* Dictionary controller translations

* Batch 1 of controller updates

* Batch 2 of controller updates

* Component translations

* Batch 3 of controller updates

* Fixes
2024-10-17 22:51:40 +09:00

25 lines
789 B
Text

@model BTCPayServer.Security.Bitpay.BitTokenEntity
@{
ViewData.SetActivePage(StoreNavPages.Tokens, "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>