From 97acd76b517fb5f8b78a6a2c65312b3685c148f8 Mon Sep 17 00:00:00 2001 From: PCoder Date: Sun, 16 Jul 2017 22:33:52 +0530 Subject: [PATCH] Added card holders name for initialization --- hosting/views.py | 1 + 1 file changed, 1 insertion(+) diff --git a/hosting/views.py b/hosting/views.py index e0554ebf..520894ae 100644 --- a/hosting/views.py +++ b/hosting/views.py @@ -440,6 +440,7 @@ class PaymentVMView(LoginRequiredMixin, FormView): form_kwargs.update({ 'initial': { + 'cardholder_name': current_billing_address.cardholder_name, 'street_address': current_billing_address.street_address, 'city': current_billing_address.city, 'postal_code': current_billing_address.postal_code,