]> git.parisson.com Git - mezzo.git/blob
7b7c2cf0b002acf0d8edee3f210f1a07bc209c18
[mezzo.git] /
1 {% load organization_tags %}
2 <table>
3 <tr>
4 <th>{{ timesheet.month|month_name }}</th>
5 </tr>
6 <tr>
7 <td>
8 {{ timesheet.percentage|format_percent }}
9 </td>
10 </tr>
11 <tr>
12 <td>
13 {% with timesheet.work_packages.all as work_packages %}
14 {% if work_packages %}
15 {{ timesheet.work_packages.all|format_wp }}
16 {% else %}
17 <span>-</span>
18 {% endif %}
19 {% endwith %}
20 </td>
21 </tr>
22 </table>