Does Django allow up to two HttpResponseRedirects between views [duplicate]

I'm wondering if it's possible to HttpResponseRedirect from view1 to view2 and finally to view3.

Psuedo code for views:

class view1:
 HttpResponseRedirect(reverse-url-for-view2)

class view2:
 HttpResponseRedirect(reverse-url-for-view3)

class view3:
 #I want to end up here and maybe return a 200

Is this possible please and if not how can I do this. I'm currently able to redirect to view2 but not from view2 to view3.

Thanks.

Back to Top