Show link to stripe payment receipt in backend (Z#23187178) (#4961)

* Show link to stripe payment receipt in backend (Z#23187178)

* Revert "Show link to stripe payment receipt in backend (Z#23187178)"

This reverts commit 4a261ac1aca03908e01c6c6cb3ab17f7f3cab6a4.

* Show link to stripe payment receipt in backend payment details (Z#23187178)
This commit is contained in:
luelista
2025-03-31 12:13:04 +02:00
committed by GitHub
parent 9447e5802d
commit f455152447

View File

@@ -84,4 +84,12 @@
<dd>{{ payment_info.message }}</dd>
{% endif %}
</dl>
{% if payment_info.latest_charge.receipt_url %}
<p>
<a href="{{ payment_info.latest_charge.receipt_url }}" target="_blank">
<span class="fa fa-file-text"></span> {% trans "Payment receipt" %}
</a>
</p>
{% endif %}
{% endif %}