https://htmx.org logo
I found my problem. It was in `post`: ```python c...
# 🔥-django-htmx
a
I found my problem. It was in `post`:
Copy code
python
class ConfirmationView(FormView):
    ...
    def post(self, request, *args, **kwargs):
        ...
            if form.is_valid():
                # Add return
                return self.form_valid(form)
        return render(self.request, self.template_name, self.get_context_data())