combo/combo/apps/dataviz/templates/combo/cubes-table.html

24 lines
514 B
HTML

{% if title %}
<h2>
{% if url %}<a href="{{url}}">{% endif %}{{title}}{% if url %}</a>{% endif %}
</h2>
{% endif %}
<table class="combo-cube-table">
<thead>
<th></th>
{% for label in aggregate.labels %}
<td>{{ label }}</td>
{% endfor %}
</thead>
<tbody>
{% for dataset in aggregate.datasets %}
<tr>
<th>{{ dataset.label }}</th>
{% for value in dataset.data %}
<td>{{ value }}</td>
{% endfor %}
</tr>
{% endfor %}
</tbody>
</table>