aemo_fr/templates/statistiques/stats-duree.html

34 lines
1.2 KiB
HTML
Raw Normal View History

2024-06-03 16:49:01 +02:00
{% extends "base.html" %}
{% block content %}
{% include "statistiques/stat-form.html" %}
{% include "statistiques/stat-tabs.html" with active="duree" %}
<div class="row">
<div class="col">
<p class="fw-bold mt-3">
Répartition des suivis par durée daccompagnement. Les suivis pris en compte sont ceux dont la date de fin de suivi se situe entre les bornes temporelles sélectionnées.
</p>
<table class="table table-sm table-hover stat_table">
<thead>
<tr><th class="left">Durée</th>
<th>Nb de suivis</th>
</tr>
</thead>
<tbody>
{% for slice in slices %}
<tr>
<td>{{ slice.label }}</td>
<td class="num">{{ durees|get_item:slice.label }}</td>
</tr>
{% endfor %}
</tbody>
</table>
<div class="text-end">
<a href=".?{% param_replace %}&export=1"><img class="icon-ui" src="{% static 'ficons/xlsx.svg' %}"></a>
</div>
</div>
</div>
{% endblock %}