テーブルから棒グラフを作成します。
この例を試してみましたが、ページにテーブルしか表示されません。
これが私のコードです:
<table cellpadding="0" cellspacing="0" border="0" class="display" id="example">
<thead>
<tr>
<th>Total des Alertes </th>
<th>Nombre critique</th>
<th>Nom d'analyste</th>
<th>Nombre majeur</th>
<th>Nombre d'alertes traités</th>
</tr>
</thead>
<tbody>
{% for liste10 in listes %}
<tr class="gradeU">
<td>{{listes11}}</td>
<td>{{liste10.critique}}</td>
<td>{{liste10.user_name}} </td>
<td>{{liste10.majeur}}</td>
<td> </td>
</tr>
{% endfor %}
</tbody>
</table>