aloof-crayon-56651
08/23/2022, 2:24 AMpython
class ConfirmationView(FormView):
success_url = '/success/'
def form_valid(self, form):
form.send()
# I feel like I'm missing something here.
return super().form_valid(form)
My expectation is that return super().form_valid(form) should redirect to the success_url specified in ConfirmationView.