Hy! I created a new Django project to upload a photo using a FormView. The photo gets processed and a download link is provided. The problem is the response: I want the html page to stay the same, only the download link should be added.
class ColorImageView(FormView):
template_name = 'images.html'
form_class = ColorImageForm
def form_valid(self, form):
download_link = ....
return HttpResponse(...?...)