Skip to content

Instantly share code, notes, and snippets.

@mbrochh
Created May 20, 2011 07:22
Show Gist options
  • Save mbrochh/982495 to your computer and use it in GitHub Desktop.
Save mbrochh/982495 to your computer and use it in GitHub Desktop.
First version of GetClientInfoView
"""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