mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 02:28:31 +01:00
fc8a5ff95f
Co-authored-by: Dennis Reimann <mail@dennisreimann.de>
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>
|
|
}
|