这是我的网址:
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"
等等
为什么我的视图无法访问?