so I have a CBV (A), CBV (B), and a url like
regex=r\'^(?P[-\\w]+)/(?P[-\\w]+)\'
I want to read in the slug and app
You can call it that way:
class CBViewA(View): def dispatch(self, request, *args, **kwargs): if kwargs['slug'] = "some slug": return CBViewB.as_view()(request, *args, **kwargs) else: return super(CBViewA, self).dispatch(request, *args, **kwargs)