bitter-monkey-50309
10/27/2022, 11:23 AMHX-Redirect
or HX-Location
(which isn't technically a redirect). https://htmx.org/reference/#response_headersred-france-69804
10/27/2022, 11:41 AMHX-Location
could (or not) fix my problem.red-france-69804
10/27/2022, 11:44 AMgreen-activity-6102
10/27/2022, 2:34 PMhx-trigger="load"
to immediately go and fetch the detail view HTMLblue-gold-89534
10/27/2022, 5:35 PMpython
def download(request, pk):
if request.htmx:
link = f"""download/{pk}" """
tmp = f"""hx-trigger="load" hx-redirect="{static(link)}" """
return HttpResponse(format_html(f"""<img {tmp} src="{static('images/startl.svg')}">"""))
else:
return FileResponse(open() ...)
I hoped I can directly load an Htmx indication ICON, and put a redirect on the file on it ... not soo smart?blue-gold-89534
10/27/2022, 5:51 PMlemon-rainbow-71647
10/27/2022, 6:16 PMgreen-activity-6102
10/27/2022, 8:40 PMblue-gold-89534
10/28/2022, 9:58 AMblue-gold-89534
10/28/2022, 10:00 AMhtml
<img hx-trigger="load" hx-redirect="/static/download/880" src="/static/images/startl.svg" class="">
this is what I can see in the webdev console after the click, which seems correct. But it is not firedblue-gold-89534
10/28/2022, 10:00 AMblue-gold-89534
10/28/2022, 10:00 AMbitter-monkey-50309
10/28/2022, 12:45 PMhx-redirect
isn't an attribute you can use in your HTML it's a header you can set on the response. You'll also need to swap src
to hx-get
for the load
trigger to do anything, otherwise your image is already loadedgreen-activity-6102
10/28/2022, 4:40 PMfew-vegetable-15970
10/28/2022, 6:19 PMfew-vegetable-15970
10/28/2022, 7:05 PMfragment_name
class attribute to know what to render in form_valid
.red-dinner-66239
10/30/2022, 10:31 AMred-dinner-66239
10/30/2022, 10:55 AMbig-engine-22348
10/30/2022, 11:37 AMbig-engine-22348
10/30/2022, 11:38 AMred-dinner-66239
10/30/2022, 11:39 AMboundless-vase-80440
10/30/2022, 12:00 PMred-dinner-66239
10/30/2022, 12:01 PMred-dinner-66239
10/30/2022, 12:05 PMred-dinner-66239
10/30/2022, 12:06 PMboundless-vase-80440
10/30/2022, 12:11 PMred-dinner-66239
10/30/2022, 12:14 PMred-dinner-66239
10/30/2022, 12:16 PMboundless-vase-80440
10/30/2022, 12:19 PMboundless-vase-80440
10/30/2022, 12:19 PM