up décompte de suivi des lieux et arbres

This commit is contained in:
Tykayn 2025-06-30 15:51:51 +02:00 committed by tykayn
parent 6c457986ad
commit 949dc71fb8
4 changed files with 65 additions and 23 deletions

View file

@ -44,15 +44,13 @@
</tr>
</thead>
<tbody>
{% for type, points in series %}
{% for point in points %}
<tr>
<td>{{ point.date }}</td>
<td>{{ type }}</td>
<td>{{ point.name }}</td>
<td>{{ point.value }}</td>
</tr>
{% endfor %}
{% for point in all_points %}
<tr>
<td>{{ point.date }}</td>
<td>{{ point.type }}</td>
<td>{{ point.name }}</td>
<td>{{ point.value }}</td>
</tr>
{% endfor %}
</tbody>
</table>
@ -150,7 +148,7 @@
scales: {
x: { type: 'time', time: { unit: 'day' }, title: { display: true, text: 'Date' } },
y: { beginAtZero: true, title: { display: true, text: 'Nombre' } },
y1: { beginAtZero: true, position: 'right', title: { display: true, text: 'Complétion (%)' }, grid: { drawOnChartArea: false } }
y1: { beginAtZero: true, position: 'right', title: { display: true, text: 'Complétion (%)' }, grid: { drawOnChartArea: false }, min: 0, max: 100 }
}
},
plugins: [ChartDataLabels]