aemo_fr/templates/statistiques/stats-duree.html

34 lines
1.2 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% 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 %}