mirror of
https://github.com/aljazceru/BTCPayServerPlugins.git
synced 2025-12-16 23:24:25 +01:00
13 lines
565 B
Plaintext
13 lines
565 B
Plaintext
@using BTCPayServer.Plugins.SideShift
|
|
@inject SideShiftService SideShiftService
|
|
@model BTCPayServer.Models.InvoicingModels.PaymentModel
|
|
@{
|
|
var settings = await SideShiftService.GetSideShiftForInvoice(Model.InvoiceId, Model.StoreId);
|
|
if (settings?.Enabled is true)
|
|
{
|
|
<div class="payment-tabs__tab py-0" id="sideshift-tab" v-on:click="switchTab('sideshift')" v-bind:class="{ 'active': currentTab == 'sideshift'}" v-if="!srvModel.paymentMethodId.endsWith('LNURLPAY')">
|
|
<span>{{$t("Altcoins (SideShift)")}}</span>
|
|
</div>
|
|
}
|
|
}
|