[FIX] gamification: add user name in report board

bzr revid: mat@openerp.com-20130226151328-4lnq7ku5y8waedkl
This commit is contained in:
Martin Trigaux 2013-02-26 16:13:28 +01:00
parent 5106c4bff9
commit 5a341ab970
1 changed files with 7 additions and 2 deletions

View File

@ -71,9 +71,14 @@
<th>Completeness</th>
<th>Current</th>
% for idx, goal in planline['list']:
<tr>
<tr
% if goal.completeness >= 100:
style="font-weight:bold;""
% endif
>
<td>${idx+1}</td>
<td>${goal.completeness}</td>
<td>${goal.user.name}</td>
<td>${goal.completeness}%</td>
<td>${goal.current}/${goal.target_goal}</td>
</tr>
% endfor