From 7a8154a907b74c1dbc7b0bfdd9b8becce5f9020c Mon Sep 17 00:00:00 2001 From: Polycarp Okock Date: Thu, 20 Jul 2017 15:02:59 +0300 Subject: [PATCH] Updated Views Added the cardholder_name as one of the fields retrieved from the Payment page --- datacenterlight/views.py | 1 + 1 file changed, 1 insertion(+) diff --git a/datacenterlight/views.py b/datacenterlight/views.py index ea7ca3ef..6b0e0d7e 100644 --- a/datacenterlight/views.py +++ b/datacenterlight/views.py @@ -343,6 +343,7 @@ class PaymentOrderView(FormView): if billing_address_data: form_kwargs.update({ 'initial': { + 'cardholder_name': billing_address_data['cardholder_name'], 'street_address': billing_address_data['street_address'], 'city': billing_address_data['city'], 'postal_code': billing_address_data['postal_code'],