mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 22:46:49 +01:00
* UI: Move section navigation to sidebar * Scroll active nav link into view * Move CTAs to top right * Server Settings: Make Policies first page * Responsive table fixes * Spacing fixes * Add breadcrumb samples * store settings fixes * payment request fixes * updates pull payment title * adds invoice detail fix * updates server settings breadcrumbs + copy fix * Don't open Server Settings on Plugins page * Add breadcrumbs to pull payment views * adds breadcrumbs to account * server and store breadcrumb fixes * fixes access tokens * Fix payment processor breadcrumbs * fixes webhook 404 * Final touches * Fix test * Add breadcrumb for email rules page * Design system updates --------- Co-authored-by: dstrukt <gfxdsign@gmail.com>
25 lines
701 B
Text
25 lines
701 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>Token Information</h5>
|
|
<table class="table table-hover">
|
|
<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>
|