Add more Stripe Payment Methods, simplify forms (#1571)

* Add more Stripe Payment Methods, simplify forms

* Revert accidential commit of boxoffice control renderer...

* Use existing QR-Code encoding in presale
This commit is contained in:
Martin Gross
2020-02-05 09:50:29 +01:00
committed by GitHub
parent 6e88054af7
commit b3e3d427cb
8 changed files with 295 additions and 36 deletions

View File

@@ -21,10 +21,13 @@ from pretix.presale.signals import html_head
def register_payment_provider(sender, **kwargs):
from .payment import (
StripeSettingsHolder, StripeCC, StripeGiropay, StripeIdeal, StripeAlipay, StripeBancontact,
StripeSofort
StripeSofort, StripeEPS, StripeMultibanco, StripePrzelewy24, StripeWeChatPay
)
return [StripeSettingsHolder, StripeCC, StripeGiropay, StripeIdeal, StripeAlipay, StripeBancontact, StripeSofort]
return [
StripeSettingsHolder, StripeCC, StripeGiropay, StripeIdeal, StripeAlipay, StripeBancontact,
StripeSofort, StripeEPS, StripeMultibanco, StripePrzelewy24, StripeWeChatPay
]
@receiver(html_head, dispatch_uid="payment_stripe_html_head")