mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2026-01-01 05:04:28 +01:00
23 lines
409 B
Plaintext
23 lines
409 B
Plaintext
@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>
|
|
}
|