odoo/addons/gamification/templates/personal_progress.mako

31 lines
807 B
Mako

<% extends 'base.mako' %>
<% block body %><table width="100%" border="1">
<tr>
<th>Goal</th>
<th>Target</th>
<th>Current</th>
<th>Completeness</th>
</tr>
% for goal in goals:
<tr
% if goal.completeness >= 100:
style="font-weight:bold;"
% endif
>
<td>${goal.definition_id.name}</td>
<td>${goal.target_goal}
% if goal.definition_suffix:
${goal.definition_suffix}
% endif
</td>
<td>${goal.current}
% if goal.definition_suffix:
${goal.definition_suffix}
% endif
</td>
<td>${goal.completeness} %</td>
</tr>
% endfor
</table>
<% endblock %>