1
0
mirror of https://github.com/ae-utbm/sith.git synced 2025-06-21 18:45:22 +00:00

Merge branch 'skia/lazy_load_user_pictures' into 'master'

core: add lazy loading in user pictures page

See merge request 
This commit is contained in:
Antoine Bartuccio 2020-06-12 20:19:34 +02:00
commit 45d5728c3e

@ -12,7 +12,7 @@
{% for picture in pictures[a.id] %}
<div class="picture">
<a href="{{ url("sas:picture", picture_id=picture.id) }}#pict">
<img src="{{ picture.get_download_thumb_url() }}" alt="{{ picture.get_display_name() }}" style="max-width: 100%"/>
<img src="{{ picture.get_download_thumb_url() }}" alt="{{ picture.get_display_name() }}" style="max-width: 100%" loading="lazy"/>
</a>
</div>
{% endfor %}