While generating simple tables is really easy with django, I can't seem to figure out how to generate the complex table.
Currently my table is rendered with
<table class="table-striped table">
{% for row in table %}
<tr>
{% for item in row %}
<td>{{ item }}</td>
{% endfor %}
</tr>
{% endfor %}
</table>
This works well with a 2 dimensional array, laying out the data in the way that is inserted into the table variable
However, generating complex tables is stumping me. Let's say I want to print a table with a header a string and a datetime, and a string and list for objects.
table = [
["value/key", Datetime]
["value 1", [Object, Object, Object]]
]
The objects are objects that need specific parsing.

I need the list to be internally loopable, instead of it getting formatted to list notation, without the other objects changing appearance.
forloop?