Closed GoogleCodeExporter closed 9 years ago
[deleted comment]
[deleted comment]
[deleted comment]
{% plane firstname age as my_table %}
<tr>
<th></th>
{% for firstname in my_table.firstname_axis %}
<th>{{ firstname }}</th>
{% endfor %}
<th>Sum</th>
</tr>
{% for age_row in my_table.age_rows %}
<tr>
<th>{{ age_row.age }}</th>
{% for val in age_row.values %}
<td>{{ val }}</td>
{% endfor %}
<td>{{ age_row.sum }}</td>
</tr>
{% endfor %}
Original comment by seb...@gmail.com
on 28 Jun 2010 at 9:12
inclusion tag 'tablefromcube'
Original comment by seb...@gmail.com
on 29 Jun 2010 at 11:29
Original issue reported on code.google.com by
seb...@gmail.com
on 23 Jun 2010 at 2:28