mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-10 09:19:24 +01:00
15 lines
517 B
Text
15 lines
517 B
Text
@using BTCPayServer.Client
|
|
@using BTCPayServer.Views.Stores
|
|
|
|
@{ var store = Context.GetStoreData(); }
|
|
|
|
@if (store != null)
|
|
{
|
|
<li class="nav-item" permission="@Policies.CanModifyStoreSettings">
|
|
<a asp-area="" asp-controller="UIPayButton" asp-action="PayButton" asp-route-storeId="@store.Id" class="nav-link @ViewData.ActivePageClass(StoreNavPages.PayButton)" id="StoreNav-PayButton">
|
|
<vc:icon symbol="nav-pay-button"/>
|
|
<span text-translate="true">Pay Button</span>
|
|
</a>
|
|
</li>
|
|
}
|
|
|