from paypal.standard.forms import PayPalPaymentsForm as BasePayPalPaymentsForm from django.conf import settings class PayPalPaymentsForm(BasePayPalPaymentsForm): """Better support for the sandbox. It will show the sandbox form upon rendering if PAYPAL_DEBUG is set to True.""" def render(self): if settings.PAYPAL_DEBUG: return self.sandbox() return super(PayPalPaymentsForm, self).render()