diff --git a/BTCPayServer/Views/Shared/_StoreFooterLogo.cshtml b/BTCPayServer/Views/Shared/_StoreFooterLogo.cshtml index 0f0c0c331..cc6934700 100644 --- a/BTCPayServer/Views/Shared/_StoreFooterLogo.cshtml +++ b/BTCPayServer/Views/Shared/_StoreFooterLogo.cshtml @@ -1 +1,2 @@ - + +BTCPay Server diff --git a/BTCPayServer/Views/UIInvoice/InvoiceReceipt.cshtml b/BTCPayServer/Views/UIInvoice/InvoiceReceipt.cshtml index 95793fc36..e0d99bb7c 100644 --- a/BTCPayServer/Views/UIInvoice/InvoiceReceipt.cshtml +++ b/BTCPayServer/Views/UIInvoice/InvoiceReceipt.cshtml @@ -42,7 +42,7 @@
-
+
@if (isProcessing) {
@@ -59,9 +59,7 @@ { if (Model.ReceiptOptions.ShowQR is true) { -
- -
+ }
@@ -115,58 +113,70 @@ if (Model.Payments?.Any() is true) {
-

Payment Details

-
+

Payment Details

+
- - - - - - + + + + + + @foreach (var payment in Model.Payments) { + + + + + + + @if (!string.IsNullOrEmpty(payment.Destination)) + { - - - - + + - @if (!string.IsNullOrEmpty(payment.Destination)) - { - - - - - } - @if (!string.IsNullOrEmpty(payment.PaymentProof)) - { - - - - - } + } + @if (!string.IsNullOrEmpty(payment.PaymentProof)) + { + + + + + } }
DatePaymentPaidRate
DatePaymentPaidRate
@payment.ReceivedDate.ToBrowserDate()@payment.Amount @payment.PaymentMethod@payment.PaidFormatted@payment.RateFormatted
@payment.ReceivedDate.ToBrowserDate()@payment.Amount @payment.PaymentMethod@payment.PaidFormatted@payment.RateFormatted + Destination + + +
- Destination - - -
- Payment Proof - - -
+ Payment Proof + + +
+
+ @foreach (var payment in Model.Payments) + { +
+ @payment.PaidFormatted = @payment.Amount @payment.PaymentMethod, Rate: @payment.RateFormatted + @if (!string.IsNullOrEmpty(payment.PaymentProof)) + { +
Proof: @payment.PaymentProof
+ } +
+ } +
} if (Model.AdditionalData?.Any() is true) {
-

Additional Data

+

Additional Data

@@ -177,7 +187,7 @@