I have a view like below.
class ConfirmationPageView(generic.TemplateView):
template_name = "confirmation.html"
What I want is to immediately move onto the below view once the ConfirmationPageView
is loaded (which means its templates were loaded too).
class SecondPageView(generic.TemplateView):
template_name = "second.html"
I don't care if the user can't see the ConfirmationPageView
in this very short transition. I just need this confirmation page to show up breifly so that a third party analytics application can track whether a user visited this confirmation page. Thank you, and please leave any questions in the comments.