https://htmx.org logo
```python class ConfirmationView(FormView): succes...
# 🔥-django-htmx
a
Copy code
python
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
.