bijoe/bijoe/templates/bijoe/cube_table.html

25 lines
695 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>{% if value|stringformat:"r" == "None" %}0{% elif value|stringformat:"r" == "True" %}{% trans "Oui" %}{% elif value|stringformat:"r" == "False" %}{% trans "Non" %}{% else %}{{ value }}{% endif %}</td>
{% endfor %}
</tr>
{% endfor %}
</tbody>
</table>
{% endfor %}