mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2026-02-02 04:44:27 +01:00
16 lines
454 B
Plaintext
16 lines
454 B
Plaintext
@using BTCPayServer.Client
|
|
@using BTCPayServer.Views.Stores
|
|
|
|
@{ var store = Context.GetStoreData(); }
|
|
|
|
@if (store != null)
|
|
{
|
|
<li class="nav-item" permission="@Policies.CanModifyStoreSettings">
|
|
<a layout-menu-item="PayButton" asp-area="" asp-controller="UIPayButton" asp-action="PayButton" asp-route-storeId="@store.Id">
|
|
<vc:icon symbol="nav-pay-button"/>
|
|
<span text-translate="true">Pay Button</span>
|
|
</a>
|
|
</li>
|
|
}
|
|
|