14 lines
280 B
HTML
14 lines
280 B
HTML
<table class="table table-condensed">
|
|
{% for row in rows %}
|
|
<tr>
|
|
{% for object in row %}
|
|
<td>
|
|
{% if object %}
|
|
{% include cell_template with object=object %}
|
|
{%endif%}
|
|
</td>
|
|
{% endfor %}
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|