Merge pull request #37108 from haftamuk/ESHE-37081

Fix: When clicking "Download Handout", the handout (image) overlays the video area, and the download does not start automatically.
This commit is contained in:
Feanil Patel
2025-11-20 14:38:05 -05:00
committed by GitHub

View File

@@ -144,7 +144,7 @@
{% if handout %}
<div class="wrapper-handouts">
<h4 class="hd hd-5">{% trans 'Handouts' as tmsg %}{{tmsg|force_escape}}</h4>
<a class="btn-link" href="{{ handout|escape }}">{% trans 'Download Handout' as tmsg %}{{tmsg|force_escape}}</a>
<a class="btn-link" href="{{ handout|escape }}" download>{% trans 'Download Handout' as tmsg %}{{tmsg|force_escape}}</a>
</div>
{% endif %}
</div>