This commit is contained in:
pengtao 2019-11-22 13:55:45 +08:00
parent 086b9451f4
commit 97cc0efd2c

View File

@ -30,13 +30,11 @@
<tbody>
<tr>
{% for one_data in key.get('row_data') %}
{% for line in one_data %}
<tr>
{% for item in line %}
{% for item in one_data %}
<td>{{ item }}</td>
{% endfor %}
{% endfor %}
{% endfor %}
</tr>
</tr>
</tbody>