From ba170632a5c885a5fb374946d1abb4169c6ca922 Mon Sep 17 00:00:00 2001 From: Felix Date: Mon, 1 Jan 2018 00:21:27 +0100 Subject: [PATCH] Fix #731 -- Display negative payment method fees correctly --- .../presale/templates/pretixpresale/event/checkout_payment.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pretix/presale/templates/pretixpresale/event/checkout_payment.html b/src/pretix/presale/templates/pretixpresale/event/checkout_payment.html index 2dd2a09af..0a9335cfc 100644 --- a/src/pretix/presale/templates/pretixpresale/event/checkout_payment.html +++ b/src/pretix/presale/templates/pretixpresale/event/checkout_payment.html @@ -12,7 +12,7 @@

{% if show_fees %} - + {{ p.fee|floatformat:2 }} {{ event.currency }} + {% if p.fee < 0 %}-{% else %}+{% endif %} {{ p.fee|floatformat:2|cut:"-" }} {{ event.currency }} {% endif %}