view getan/templates/zeiterfassung @ 377:0ad470c4bf17

Sort entries in wochenbericht and zeiterfassung templates by startdate
author Björn Ricks <bjoern.ricks@intevation.de>
date Tue, 11 Mar 2014 16:18:28 +0100
parents f4dcfbede99b
children
line wrap: on
line source
{% for proj in projects %}
{%- if proj.entries %}
# project: {{ proj.key }} ({{ proj.desc }})
{% for entry in proj.entries|sort(attribute='start') -%}
{{ entry.start|date_format}} {{ (entry.get_duration()|human_time).rjust(5) }}h ? {{ user.ljust(3) }} [{{ entry.get_workpackage() }}] {{ entry.get_comment() }}
{% endfor -%}
# total: {{ proj.get_total_duration()|human_time }}h
{% endif -%}
{% endfor %}
# total all projects: {{ total_time|human_time }}h
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)