我会建立一个从表格中给出的条形图。
我尝试使用此示例,但我的页面中只得到一个表格。
这是我的代码:
<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>