2022-06-15 04:32:46 +02:00
|
|
|
@using BTCPayServer.Client
|
|
|
|
@using BTCPayServer.Views.Stores
|
|
|
|
|
|
|
|
@{ var store = Context.GetStoreData(); }
|
|
|
|
|
|
|
|
@if (store != null)
|
|
|
|
{
|
|
|
|
<li class="nav-item" permission="@Policies.CanModifyStoreSettings">
|
2024-06-19 15:23:10 +02:00
|
|
|
<a asp-area="" asp-controller="UIPayButton" asp-action="PayButton" asp-route-storeId="@store.Id" class="nav-link @ViewData.ActivePageClass(StoreNavPages.PayButton)" id="StoreNav-PayButton">
|
2024-05-20 01:57:46 +02:00
|
|
|
<vc:icon symbol="nav-pay-button"/>
|
2024-07-25 22:46:02 +09:00
|
|
|
<span text-translate="true">Pay Button</span>
|
2022-06-15 04:32:46 +02:00
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
}
|
|
|
|
|