This is my url:
from views import *
urlpatterns = patterns('',
url(r'^$', BillingView.as_view(), name="index"),
)
and this is the method in my 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"
etc.
Why is my view is not accessible?
