mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 02:28:31 +01:00
022cd666eb
* Add tag helper for sticky header Encapsulates some of the CSS and JS required and makes the usage easier. * Make sticky header span full content area horizontally * Use sticky header on remaining list views * Use sticky header on remaining edit and detail views * Adapt pull payments view to be consistent with other list views * Fix form markup * PSBT test fix * Update header actions * Remove sticky header tag helper
12 lines
419 B
Plaintext
12 lines
419 B
Plaintext
@{
|
|
var walletId = Context.GetRouteValue("walletId")?.ToString();
|
|
var storeId = Context.GetRouteValue("storeId")?.ToString();
|
|
var cryptoCode = Context.GetRouteValue("cryptoCode")?.ToString();
|
|
var wallet = walletId != null ? WalletId.Parse(walletId) : new WalletId(storeId, cryptoCode);
|
|
}
|
|
|
|
<div class="sticky-header-setup"></div>
|
|
<div class="sticky-header">
|
|
<vc:wallet-nav wallet-id="wallet"/>
|
|
</div>
|