forked from CGM_Public/pretix_original
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:
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user