-
-
Save saidimu/1644333 to your computer and use it in GitHub Desktop.
First version of GetClientInfoView
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""View classes for the get_client_info application.""" | |
from shop.views import ShopTemplateView | |
from shop.views.checkout import SelectShippingView | |
class GetClientInfoView(SelectShippingView): | |
"""Displays form for gathering shipping and billing address.""" | |
template_name = 'shop/checkout/get_client_info.html' | |
def get_context_data(self, **kwargs): | |
ctx = super(SelectShippingView, self).get_context_data(**kwargs) | |
return ctx |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment