i am trying to call a class based view and i am able to do it, but for some reason i am not getting the context of the new class that i am calling
class ShowApps
Instead of
ShowAppsView.as_view()(self.request)
I had to do this
return ShowAppsView.as_view()(self.request)