<table>
<thead>
<tr>
<th width="470"> </th>
<th width="20">Table Header</th>
<th width="20">Table Header</th>
<th width="20">Table Header</th>
</tr>
</thead>
{% for object in object_list %}
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
{% empty %}
<li>{% trans "No objects yet." %}</li>
{% endfor %}
</table>