{% extends "camera/base.html" %}
{% load static %}
{% block header %}
<h1 class="monh1">Historique Général</h1>
{% endblock %}
{% block content %}
<table>
<tr>
<!-- modification de la variable `latest_photo_list_group3` en `latest_photo_list_group` -->
{% for photo in latest_photo_list_group %}
<td>
<a href="{% static photo.file_photo_jpg %}">
<img class="centre-image imgresponsive" src="{% static photo.file_photo_jpg %}" height="150" width="225" alt="photo non disponible" loading="lazy"/><figcaption>{{photo.name}} - {{photo.appareil}}</figcaption>
</a>
</td>
{% if forloop.last %}
</tr>
{% else %}
<!-- Changement du `forloop.counter` -->
{% if forloop.counter|divisibleby:"4" %}
</tr><tr>
{% endif %}
{% endif %}
{% endfor %}
</table>
{% endblock %}