mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-01 09:00:03 +01:00
22 lines
409 B
Text
22 lines
409 B
Text
@model BTCPayServer.Payments.LNURLPayPaymentMethodDetails
|
|
|
|
@if (!string.IsNullOrEmpty(Model.ProvidedComment))
|
|
{
|
|
|
|
<tr>
|
|
<td colspan="100% bg-tile">
|
|
|
|
LNURL Comment: @Model.ProvidedComment
|
|
</td>
|
|
</tr>
|
|
}
|
|
@if (!string.IsNullOrEmpty(Model.ConsumedLightningAddress))
|
|
{
|
|
|
|
<tr>
|
|
<td colspan="100% bg-tile">
|
|
|
|
Lightning address used: @Model.ConsumedLightningAddress
|
|
</td>
|
|
</tr>
|
|
}
|