django表在最后一行截止了一半

时间:2012-04-10 18:47:04

标签: html django templates html-table

我创建了一个行列表,列表(行)中的每个项目都包含我视图中单个单元格的列表,并将其传递给模板并使用此代码构建我的表格

 <table style="border: 1px solid black">
        <thead>
        <tr>
        {% for th_ in htl %}
           <th style="border: 1px solid black"> {{th_|safe}} </th>
        {%endfor%}
        </tr>
        </thead>

        <tbody>
        {% for tl_ in mylist %}
            <tr>
            {% for td_ in tl_ %}
                <td style="border: 1px solid black"> {{td_|safe}} </td>
            {%endfor%}
            </tr>
        {% endfor %}
        </tbody>

        </table>

问题是最后一行是在任意一列被剪切的,并且没有为该行的其余部分生成html,并且该表不会显示所有数据。如果我在同一个表中添加几行而不是最后一行(这不是最后一行的第5行,但是最后一行被截断了。有什么想法会出现这种奇怪的行为吗?

0 个答案:

没有答案