Add sumarry

This commit is contained in:
Quentin Grosyeux 2013-11-05 05:15:18 +01:00
commit bf36486bf3
5 changed files with 58 additions and 0 deletions

View file

@ -8,4 +8,38 @@
<h1>
THIS IS SUMMARY
</h1>
<table>
<thead>
<tr>
<th></th>
{for $i=1 to $nbExoMax}
<th>exo{$i}</th>
{/for}
<th>Points</th>
</tr>
</thead>
<tbody>
{$total=0}
{foreach from=$themes item=theme}
<tr>
<th>{$theme->get_name()}</th>
{$sum=0}
{foreach from=$theme->get_exercicesOrdered() item=exo}
{$pts=$exo->points}{$sum=$sum + $pts}
<td>{$pts}</td>
{/foreach}
<td>{$sum}</td>
</tr>
{$total=$total+$sum}
{/foreach}
<tr>
{for $i=1 to $nbExoMax}
<td></td>
{/for}
<td>Total :</td>
<td>{$total}</td>
</tr>
</tbody>
</table>
{/block}