mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-10 09:19:24 +01:00
* 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
25 lines
789 B
Text
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>
|