class TagList(TemplateView):def get_context_data(self, **kwargs):
...qlist = QueList.as_view()(self.request, **kwargs)
print qlist
...
class QueListView(ListView):
def get_context_data(self, **kwargs):...When QuesList.as_view() is called then it produces The response content must be rendered before it can be accessed . on print qlist line How to fix this error and what's reason behind this?