bijoe/bijoe/templates/bijoe/cube_table.html

25 lines
511 B
HTML

{% load i18n %}
{% if visualization.loop %}
<h2>{{ visualization.title }}</h2>
{% endif %}
{% for table in visualization %}
<table class="bijoe-table main">
<caption>{{ table.table_title }}</caption>
<tbody>
{% for row in table.table %}
<tr>
{% for value in row %}
{% comment %}Only django 1.10 allow is None/True/False{% endcomment %}
<td>{{ value }}</td>
{% endfor %}
</tr>
{% endfor %}
</tbody>
</table>
{% endfor %}