这是我的URL:
from views import *
urlpatterns = patterns( ,
url(r ^$ , BillingView.as_view(), name="index"),
)
这是我 views. py
中的方法:
class BillingView(BaseCompositeView):
"""
A view that lets you record new billing information. This view includes all
of the forms needed by the users on one page.
"""
# We cannot easily override FormView since this view uses multiple forms
template_name = "billing/base_billing.html"
等
为什么我的观点是无法理解的?