我从pandas(DataFrame)获取数据,该数据位于列表列表中,例如[['jay','M','CS'],[],[]等。我如何将这些数据放在表中。我直接将列表数据推送到html文件中。第一个循环工作正常,但未在第二个循环中通过,我该怎么做?我是html的新手。
{% for post in post_data %}
<tr>
{% for value in post %}
<td>
{{value}}
</td>
{% endfor %}
</tr>
{% endfor %}
我通过了'tables':[df.to_html(classes ='data',header =“ true”)],数据以原始html显示。
<div class="card card-stats">
<div class="card-body ">
<div class="card-header ">
<!--div class="progress-container progress-info"-->
<!--<h6 class="card -title" style="color:#FFFFFF; background-color:#008B8B;" align="center">DataFiles</h6>-->
<table id="TripGrid" class="datafiletable" cellspacing="0" width="100%">
<thead style="background-color: #6699FF">
{% for header in post_header %}
<th>{{header}}</th>
{% endfor %}
</thead>
<tbody>
{% for table in tables %}
{{table}}
{% endfor %}
</tbody>
</table><br>
</div>
</div>
</div>